-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "ewc",
"version": "1.0.0",
"main": "./build/index.js",
"bin": {
"ewc": "./build/index.js"
},
"scripts": {
"build": "npx tsc",
"test": "npx tsc && jest",
"localinstall": "npx tsc && npm install -g ."
},
"keywords": [
"ergo",
"cli",
"wallet"
],
"author": "ThierryM1212",
"license": "MIT",
"dependencies": {
"@fleet-sdk/common": "^0.2.3",
"@fleet-sdk/compiler": "^0.2.3",
"@fleet-sdk/core": "^0.2.3",
"@fleet-sdk/crypto": "^0.2.3",
"@fleet-sdk/wallet": "^0.2.3",
"@inquirer/editor": "^1.2.12",
"@inquirer/prompts": "^3.1.1",
"@scure/bip39": "^1.2.1",
"@types/inquirer": "^9.0.6",
"cli-table3": "^0.6.3",
"commander": "^11.0.0",
"eciesjs": "^0.4.13",
"ergo-lib-wasm-nodejs": "^0.24.1",
"json-bigint": "^1.0.0",
"sigmastate-js": "^0.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@types/jest": "^29.5.5",
"@types/json-bigint": "^1.0.2",
"@types/node": "^20.6.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"description": "Ergo CLI tool",
"engines": {
"node": ">=18.0.0"
}
}