-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "cli",
"version": "1.0.0",
"bin": "dist/index.js",
"main": "dist/index.js",
"author": "Janek Rahrt",
"license": "MIT",
"scripts": {
"start": "ts-node index.ts",
"prepare": "patch-package && tsc",
"build": "tsc && [ -f .env ] && cp .env dist/ || true && pkg . --compress GZip --options \"no-warnings\""
},
"pkg": {
"targets": [
"latest-linux-arm64",
"latest-linux-x64",
"latest-macos-arm64",
"latest-macos-x64",
"latest-win-arm64",
"latest-win-x64"
],
"assets": [
"/**/.env"
],
"outputPath": "bin"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.4.2",
"@types/lodash.chunk": "^4.2.7",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.10",
"dotenv": "^16.3.2",
"patch-package": "^6.4.7",
"pkg": "^5.8.0",
"postinstall-postinstall": "^2.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@argent/x-multicall": "^7.1.0",
"@types/lodash": "^4.14.182",
"commander": "^9.4.0",
"ethers": "^5.6.9",
"lodash": "^4.17.21",
"ora": "5",
"prompts": "^2.4.2",
"semver": "^7.3.7",
"starknet": "6.7.0",
"starknet-410": "npm:[email protected]",
"starknet-390": "npm:[email protected]",
"starknet-4220": "npm:[email protected]",
"yup": "^1.0.0-beta.4"
}
}