-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.58 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
{
"name": "@ucla-irl/ndnts-aux",
"version": "4.0.0",
"description": "NDNts Auxiliary Package for Web and Deno",
"scripts": {
"test": "deno test --no-check",
"format": "deno fmt",
"lint": "deno lint",
"build": "deno run -A ./build.ts"
},
"keywords": [
"NDN",
"Named Data Networking"
],
"author": "Xinyu Ma <[email protected]>",
"license": "ISC",
"repository": "https://github.com/UCLA-IRL/ndnts-aux.git",
"bugs": {
"url": "https://github.com/UCLA-IRL/ndnts-aux/issues"
},
"dependencies": {
"@ndn/sync-api": "https://ndnts-nightly.ndn.today/sync-api.tgz",
"cbor-x": "^1.6.0",
"event-iterator": "^2.0.0",
"eventemitter3": "^5.0.1",
"jose": "^5.9.6",
"tslib": "^2.8.0",
"type-fest": "^4.26.1",
"uuid": "^10.0.0",
"wait-your-turn": "^1.0.1",
"y-protocols": "^1.0.6",
"yjs": "^13.6.20"
},
"devDependencies": {
"@ndn/endpoint": "https://ndnts-nightly.ndn.today/endpoint.tgz",
"@ndn/fw": "https://ndnts-nightly.ndn.today/fw.tgz",
"@ndn/keychain": "https://ndnts-nightly.ndn.today/keychain.tgz",
"@ndn/l3face": "https://ndnts-nightly.ndn.today/l3face.tgz",
"@ndn/naming-convention2": "https://ndnts-nightly.ndn.today/naming-convention2.tgz",
"@ndn/ndncert": "https://ndnts-nightly.ndn.today/ndncert.tgz",
"@ndn/ndnsec": "https://ndnts-nightly.ndn.today/ndnsec.tgz",
"@ndn/nfdmgmt": "https://ndnts-nightly.ndn.today/nfdmgmt.tgz",
"@ndn/node-transport": "https://ndnts-nightly.ndn.today/node-transport.tgz",
"@ndn/packet": "https://ndnts-nightly.ndn.today/packet.tgz",
"@ndn/segmented-object": "https://ndnts-nightly.ndn.today/segmented-object.tgz",
"@ndn/svs": "https://ndnts-nightly.ndn.today/svs.tgz",
"@ndn/tlv": "https://ndnts-nightly.ndn.today/tlv.tgz",
"@ndn/util": "https://ndnts-nightly.ndn.today/util.tgz",
"@ndn/ws-transport": "https://ndnts-nightly.ndn.today/ws-transport.tgz",
"@types/wicg-file-system-access": "^2023.10.5",
"abortable-iterator": "^5.1.0",
"it-pushable": "^3.2.3",
"p-defer": "^4.0.1",
"streaming-iterables": "^8.0.1"
},
"peerDependencies": {
"@ndn/endpoint": ">=0.0.0",
"@ndn/fw": ">=0.0.0",
"@ndn/keychain": ">=0.0.0",
"@ndn/l3face": ">=0.0.0",
"@ndn/naming-convention2": ">=0.0.0",
"@ndn/ndncert": ">=0.0.0",
"@ndn/ndnsec": ">=0.0.0",
"@ndn/nfdmgmt": ">=0.0.0",
"@ndn/node-transport": ">=0.0.0",
"@ndn/packet": ">=0.0.0",
"@ndn/segmented-object": ">=0.0.0",
"@ndn/svs": ">=0.0.0",
"@ndn/tlv": ">=0.0.0",
"@ndn/util": ">=0.0.0",
"@ndn/ws-transport": ">=0.0.0"
}
}