-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·80 lines (80 loc) · 2.22 KB
/
package.json
File metadata and controls
executable file
·80 lines (80 loc) · 2.22 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "leicoin-node",
"version": "0.6.18",
"description": "",
"exports": "./src/index.ts",
"type": "module",
"scripts": {
"setup": "bun run ./scripts/setup",
"clean": "rm -rf node_modules",
"test": "bun test",
"testnet": "bun run ./testnet",
"debug": "bun run ./src/index.ts",
"debug:bundle": "bun run ./build/bundle/leicoin-node.js",
"debug:newBundle": "bun run ./scripts/bundle && bun run ./build/bundle/leicoin-node.js",
"debug:noCompact": "bun run ./build/src",
"debug:noCompactNewTsc": "tsc && bun run build/src",
"bundle": "bun run ./scripts/bundle",
"tsc": "tsc",
"compile": "bun run ./scripts/compile",
"release": "bun run ./scripts/build/withEntryPoint",
"start": "./build/bin/leicoin-node"
},
"workspaces": [
"src/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LeiCraft/LeiCoin-Node.git"
},
"author": "LeiCraft_",
"publisher": "LeiCraft_MC",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/LeiCraft/LeiCoin-Node/issues"
},
"homepage": "https://github.com/LeiCraft/LeiCoin-Node#readme",
"dependencies": {
"@cleverjs/cli": "^1.1.2",
"@date-fns/utc": "^1.2.0",
"@elysiajs/cors": "^1.2.0",
"@leicoin/cli": "^1.0.0",
"@leicoin/common": "^1.0.0",
"@leicoin/config": "^1.0.0",
"@leicoin/core": "^1.0.0",
"@leicoin/crypto": "^1.0.0",
"@leicoin/encoding": "^1.0.0",
"@leicoin/http-api": "^1.0.0",
"@leicoin/minter": "^1.0.0",
"@leicoin/net": "^1.0.0",
"@leicoin/pos": "^1.0.0",
"@leicoin/smart-contracts": "^1.0.0",
"@leicoin/storage": "^1.0.0",
"@leicoin/utils": "^1.0.0",
"@leicoin/verification": "^1.0.0",
"@noble/secp256k1": "^2.2.3",
"ansi-escapes": "^4.3.2",
"chalk": "^4.1.2",
"classic-level": "^1.4.1",
"cron": "^4.1.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.7",
"elliptic": "^6.6.1",
"elysia": "^1.2.22",
"level-read-stream": "^1.1.1",
"low-level": "^1.0.12",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"bun": "^1.2.4",
"@types/bun": "^1.2.4",
"@types/cors": "^2.8.17",
"@types/elliptic": "^6.4.18",
"@types/node": "^22.13.5",
"@types/readable-stream": "^4.0.18",
"typescript": "^5.7.3"
},
"patchedDependencies": {
"classic-level@1.4.1": "patches/classic-level@1.4.1.patch"
}
}