-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.73 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.73 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
{
"name": "appchain-agent",
"version": "0.1.0",
"type": "module",
"bin": {
"cli": "./dist/index.js"
},
"scripts": {
"lint": "eslint .",
"build": "tsc -p tsconfig.json",
"agent": "node --experimental-specifier-resolution=node --experimental-vm-modules --experimental-wasm-modules --experimental-wasm-threads --no-warnings dist/index.js"
},
"devDependencies": {
"@types/node": "^22.4.1",
"eslint-config-custom": "file:../appchain/packages/eslint-config-custom",
"tsconfig": "file:../appchain/packages/tsconfig",
"typescript": "5.5.4"
},
"dependencies": {
"@chainsafe/libp2p-noise": "15.1.0",
"@chainsafe/libp2p-yamux": "6.0.2",
"@helia/unixfs": "3.0.7",
"@libp2p/bootstrap": "10.1.4",
"@libp2p/identify": "1.0.21",
"@libp2p/interface": "1.6.3",
"@libp2p/tcp": "9.1.4",
"blockstore-core": "4.4.1",
"blockstore-fs": "1.1.11",
"cbor": "^9.0.2",
"commander": "^12.1.0",
"datastore-core": "9.2.9",
"datastore-fs": "9.1.9",
"helia": "4.2.5",
"libp2p": "1.8.3",
"multiformats": "13.2.2",
"o1js": "1.6.0",
"@zkn/chain": "file:../appchain/packages/chain",
"@zkn/qry": "file:../appchain/packages/qry"
},
"resolutions": {
"@proto-kit/api": "*",
"@proto-kit/common": "*",
"@proto-kit/deployment": "*",
"@proto-kit/indexer": "*",
"@proto-kit/library": "*",
"@proto-kit/module": "*",
"@proto-kit/persistance": "*",
"@proto-kit/processor": "*",
"@proto-kit/protocol": "*",
"@proto-kit/sdk": "*",
"@proto-kit/sequencer": "*"
},
"pnpm": {
"overrides": {
"react-native": "never"
}
},
"packageManager": "pnpm@9.8.0+sha256.56a9e76b51796ca7f73b85e44cf83712862091f4d498c0ce4d5b7ecdc6ba18f7"
}