-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.27 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@dignetwork/dig-sdk",
"version": "0.0.1-alpha.199",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./src/index.ts",
"require": "./dist/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc && npm run postbuild",
"postbuild": "copyfiles -u 1 \"src/**/*.crt\" \"src/**/*.key\" dist",
"start": "ts-node src/index.ts",
"server": "ts-node src/server.ts",
"test": "mocha -r ts-node/register tests.ts",
"prepare-release": "bash ./scripts/release.sh"
},
"author": "",
"license": "ISC",
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@dignetwork/datalayer-driver": "^0.1.29",
"@dignetwork/dig-sdk": "^0.0.1-alpha.158",
"archiver": "^7.0.1",
"async-mutex": "^0.5.0",
"axios": "^1.7.7",
"base-x": "^5.0.0",
"bip39": "^3.1.0",
"bottleneck": "^2.19.5",
"chia-bls": "^1.0.2",
"chia-config-loader": "^1.0.1",
"chia-root-resolver": "^1.0.0",
"chia-wallet": "^1.0.18",
"cli-progress": "^3.12.0",
"colorette": "^2.0.20",
"crypto-js": "^4.2.0",
"figures": "^6.1.0",
"fs-extra": "^11.2.0",
"hi-base32": "^0.5.1",
"ignore": "^5.3.2",
"inquirer": "^10.2.2",
"lodash": "^4.17.21",
"merkletreejs": "^0.4.0",
"nanospinner": "^1.1.0",
"nconf": "^0.12.1",
"node-cache": "^5.1.2",
"node-stun": "^0.1.2",
"progress-stream": "^2.0.0",
"proper-lockfile": "^4.1.2",
"superagent": "^10.1.0",
"redis": "^4.7.0",
"superagent": "^10.0.0",
"unzipper": "^0.12.3",
"urns": "^0.6.0"
},
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/chai": "^4.3.20",
"@types/cli-progress": "^3.11.6",
"@types/crypto-js": "^4.2.2",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/lodash": "^4.17.10",
"@types/mocha": "^10.0.9",
"@types/nconf": "^0.10.7",
"@types/node": "^22.7.5",
"@types/progress-stream": "^2.0.5",
"@types/proper-lockfile": "^4.1.4",
"@types/superagent": "^8.1.9",
"@types/unzipper": "^0.10.10",
"chai": "^5.1.1",
"copyfiles": "^2.4.1",
"mocha": "^10.7.3",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}