-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "@badaimweeb/js-protov2d",
"version": "1.0.14",
"description": "libp2p-less/hardlinked variant of ProtoV2",
"main": "dist/index.js",
"browser": {
"./dist/pqcache.js": "./dist/pqcache-browser.js"
},
"types": "dist/index.d.ts",
"scripts": {
"test": "node dist/test/index.js",
"prepublishOnly": "rimraf dist/ && npm run build && npm run test && rimraf dist/test/",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BadAimWeeb/js-protov2d.git"
},
"author": "BadAimWeeb",
"license": "MIT",
"bugs": {
"url": "https://github.com/BadAimWeeb/js-protov2d/issues"
},
"homepage": "https://github.com/BadAimWeeb/js-protov2d#readme",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/msgpack-lite": "^0.1.11",
"@types/node": "^20.14.11",
"@types/ws": "^8.5.11",
"rimraf": "^6.0.1",
"typescript": "^5.5.3"
},
"dependencies": {
"@dashlane/pqc-kem-kyber1024-browser": "^1.0.0",
"@dashlane/pqc-kem-kyber1024-node": "^1.0.0",
"@dashlane/pqc-sign-dilithium5-browser": "^1.0.0",
"@dashlane/pqc-sign-dilithium5-node": "^1.0.0",
"@noble/curves": "^1.4.2",
"debug": "^4.3.5",
"ip-address": "^9.0.5",
"isomorphic-ws": "^5.0.0",
"msgpack-lite": "^0.1.26",
"tiny-typed-emitter": "^2.1.0",
"ws": "^8.18.0"
},
"engines": {
"node": ">=20.0.0"
},
"type": "module"
}