-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 946 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 946 Bytes
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
{
"name": "icp-cli",
"version": "0.1.5",
"description": "icp-cli on JS",
"bin": {
"icp-cli": "./dist/bin/cli.js"
},
"scripts": {
"start": "ts-node ./src/bin/cli.ts",
"build": "tsc"
},
"dependencies": {
"@dfinity/agent": "^2.3.0",
"@dfinity/auth-client": "^2.3.0",
"@dfinity/candid": "^2.3.0",
"@dfinity/ic-management": "^5.2.1",
"@dfinity/identity": "^2.3.0",
"@dfinity/identity-secp256k1": "^2.3.0",
"@dfinity/principal": "^2.3.0",
"@dfinity/utils": "^2.8.0",
"commander": "^13.0.0",
"dotenv": "^16.4.7",
"inquirer": "^12.3.2",
"nanospinner": "^1.2.0",
"nodemon": "^3.1.7",
"shelljs": "^0.8.5",
"tweetnacl": "^1.0.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"jest": "^29.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"engines": {
"node": "^18.19.1 || ^20.11.1 || >=22.12.0"
},
"keywords": [],
"license": "MIT"
}