-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 2.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@chainsafe/libp2p-quic",
"version": "1.1.0",
"description": "A QUIC transport for libp2p",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"napi": {
"binaryName": "libp2p-quic",
"targets": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl"
]
},
"engines": {
"node": ">= 20"
},
"keywords": [
"napi",
"libp2p",
"quic"
],
"repository": {
"type": "git",
"url": "https://github.com/ChainSafe/js-libp2p-quic"
},
"homepage": "https://github.com/ChainSafe/js-libp2p-quic",
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"project": true,
"sourceType": "module"
}
},
"scripts": {
"artifacts": "napi artifacts",
"build": "yarn build:ts",
"build:ts": "aegir build && cp src/*.node dist/src",
"build:rs": "napi build --platform --release --strip --esm -o src --dts napi.d.ts --js napi.js",
"build:rs:debug": "napi build --platform --esm -o src --dts napi.d.ts --js napi.js",
"dep-check": "aegir dep-check -P test -P src/napi.js",
"docs": "aegir docs",
"lint": "aegir lint",
"prepublishOnly": "napi prepublish -t npm",
"test": "aegir test -t node",
"test:chrome": "aegir test -t browser -f ./dist/test/browser.js --cov",
"test:chrome-webworker": "aegir test -t webworker -f ./dist/test/browser.js",
"test:firefox": "aegir test -t browser -f ./dist/test/browser.js -- --browser firefox",
"test:firefox-webworker": "aegir test -t webworker -f ./dist/test/browser.js -- --browser firefox",
"test:node": "aegir test -t node --cov",
"test:electron-main": "aegir test -t electron-main",
"universal": "napi universal",
"version": "napi version"
},
"dependencies": {
"@libp2p/crypto": "^5.0.12",
"@libp2p/interface": "^2.6.0",
"@libp2p/utils": "^6.5.8",
"@multiformats/multiaddr": "^12.4.0",
"@multiformats/multiaddr-matcher": "^1.6.0",
"it-stream-types": "^2.0.2",
"uint8arraylist": "^2.4.8"
},
"devDependencies": {
"@libp2p/interface-compliance-tests": "^6.3.2",
"@libp2p/logger": "^5.0.1",
"@napi-rs/cli": "^3.0.0-alpha.70",
"aegir": "^45.1.3",
"p-event": "^6.0.1",
"sinon-ts": "^2.0.0",
"wherearewe": "^2.0.1"
},
"packageManager": "[email protected]",
"browser": {
"./dist/src/transport.js": "./dist/src/transport.browser.js"
},
"react-native": {
"./dist/src/transport.js": "./dist/src/transport.js"
},
"sideEffects": false
}