-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
40 lines (40 loc) · 1.33 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
{
"name": "@ringsnetwork/rings-node",
"collaborators": [
"RND <[email protected]>"
],
"description": "Rings is a structured peer-to-peer network implementation using WebRTC, Chord algorithm, and full WebAssembly (WASM) support.\n",
"version": "0.7.0",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/RingsNetwork/rings-node"
},
"scripts": {
"wasm_pack": "wasm-pack build crates/node --release --scope ringsnetwork -t web --no-default-features --features browser_default --features console_error_panic_hook",
"proto_generate": "mkdir -p dist && pbjs -t static-module --keep-case -o dist/rings_node_proto.js crates/rpc/src/protos/rings_node.proto && pbts -o dist/rings_node_proto.d.ts dist/rings_node_proto.js",
"prepare": "npm run wasm_pack && npm run proto_generate && cp crates/node/pkg/rings_node* ./dist && cp index.ts ./dist && tsc ./dist/index.ts"
},
"dependencies": {
"circomlib": "^2.0.5",
"protobufjs": "https://github.com/RingsNetwork/protobuf.js#83686a0"
},
"devDependencies": {
"protobufjs-cli": "^1.1.2",
"typescript": "^4.9.5"
},
"files": [
"dist/"
],
"module": "dist/index.js",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"sideEffects": false,
"keywords": [
"Chord",
"DHT",
"Web3",
"P2P",
"WASM"
]
}