-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.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
40
41
42
43
44
{
"name": "@dignetwork/data-integrity-tree",
"version": "0.0.22",
"description": "Modularized Data Integrity Tree used in the DIG Network Clients.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare-release": "bash ./scripts/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DIG-Network/DataIntegrityTree.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"chia-blockchain",
"dig",
"decentralized internet gateway"
],
"author": "Michael Taylor",
"license": "MIT",
"bugs": {
"url": "https://github.com/DIG-Network/DataIntegrityTree/issues"
},
"homepage": "https://github.com/DIG-Network/DataIntegrityTree#readme",
"dependencies": {
"crypto-js": "^4.2.0",
"merkletreejs": "^0.4.0",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}