-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "lattice-cli",
"version": "0.3.0",
"description": "CLI for interacting with gridplus-sdk",
"main": "./dist/lattice-cli.js",
"types": "./dist/lattice-cli.d.ts",
"scripts": {
"clean": "rm -rf dist && rm -rf release",
"build": "tsc -p tsconfig.json && npx pkg -c package.json dist/lattice-cli.js",
"start": "ts-node ./src/lattice-cli.ts",
"release": "npm run clean && npm run build && chmod 755 release/*"
},
"keywords": [],
"author": "Doug Lance",
"license": "ISC",
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@types/spinnies": "^0.5.0",
"dotenv": "^16.0.0",
"enquirer": "^2.3.6",
"gridplus-sdk": "^2.4.1",
"lattice-eth2-utils": "^0.5.1",
"spinnies": "^0.5.1",
"ts-node": "^10.7.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"typescript": "^4.6.3"
},
"pkg": {
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64"
],
"outputPath": "release"
}
}