forked from nnlgsakib/mind-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.63 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.63 KB
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
{
"name": "mindc",
"version": "1.0.3",
"description": "A ts cli to interact with Mind-Smart-Chain",
"main": "./dist/src/cli.js",
"bin": {
"mind-cli": "./dist/src/cli.js"
},
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --project tsconfig.json",
"build:win": "npm run build && node scripts/build_win.js && pkg mind-cli.js -o bin/mind-cli --target node18-win-x64",
"build:linux": "npm run build && node scripts/build_linux.js && pkg mind-cli.js -o bin/mind-cli",
"start": "node dist/cli.js"
},
"pkg": {
"scripts": [
"node_modules/axios/**/*",
"dist/**/*.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Mind-chain/mindcli-ts.git"
},
"keywords": [
"MIND",
"MSC",
"mind-chain"
],
"author": "nnlgsakib",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mind-chain/mindcli-ts/issues"
},
"homepage": "https://github.com/Mind-chain/mindcli-ts#readme",
"dependencies": {
"@octokit/request": "^9.1.1",
"@octokit/rest": "^20.1.1",
"@types/cli-progress": "^3.11.5",
"@types/fs-extra": "^11.0.4",
"@types/progress": "^2.0.7",
"axios": "^0.27.2",
"child_process": "^1.0.2",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"esbuild": "^0.23.0",
"esbuild-wasm": "^0.23.0",
"ethers": "^6.12.1",
"fs-extra": "^11.2.0",
"latest": "^0.2.0",
"msc-js": "^0.1.13",
"node-fetch": "^3.3.2",
"pkg": "^5.8.1",
"progress": "^2.0.3",
"ts-node": "^10.9.2"
},
"devDependencies": {
"typescript": "^5.5.3"
}
}