-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@floornfts/mobile-minting",
"version": "1.2.5",
"repository": "git://github.com/floornfts/mobile-minting.git",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"author": "Floor <[email protected]>",
"license": "MIT",
"source": "src/index.ts",
"engines": {
"node": ">=16.x"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"README.md",
"src/**",
"dist/**"
],
"lint-staged": {},
"scripts": {
"dev": "concurrently --kill-others \"tsc -w\" \"tsc-alias -w\" \"nodemon -r dotenv/config ./dist/index\"",
"build": "shx rm -rf dist/ && tsup src/index.ts --format cjs,esm --dts",
"build-types": "tsc --noEmit --pretty",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"test": "NODE_OPTIONS=\"--loader ts-node/esm\" c8 mocha --require ts-node/register",
"release": "npm run build && np",
"dry-run": "ts-node src/dry-run/index.ts",
"test-fork": "cd ./scripts/ && sh ./test-fork.sh"
},
"dependencies": {
"alchemy-sdk": "^3.3.1",
"axios": "^1.7.4",
"dotenv": "^16.4.5",
"ethers": "^6.13.1",
"np": "^10.0.6",
"ts-node": "10.9.1",
"tslib": "^2.6.3"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.6",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"c8": "^10.1.2",
"chai": "^4.3.9",
"eslint": "^8.52.0",
"mocha": "10.2.0",
"shx": "^0.3.4",
"tsc-alias": "^1.8.10",
"tsup": "^6.1.2",
"typescript": "^5.0.0"
}
}