-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.19 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.19 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@noisytransfer/cli",
"version": "0.2.8",
"description": "Fast E2EE WebRTC file transfer (DTLS by default, optional PQ) with human-readable pairing codes.",
"license": "AGPL-3.0-only",
"type": "module",
"bin": {
"nt": "./dist/nt.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./cli": {
"import": "./dist/nt.js",
"require": "./dist/nt.cjs"
},
"./env/rtc-init": {
"require": "./dist/env/rtc-init.cjs"
}
},
"engines": {
"node": ">=22"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": [
"./src/env/node-polyfills.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/collapsinghierarchy/noisytransfercli.git"
},
"bugs": {
"url": "https://github.com/collapsinghierarchy/noisytransfercli/issues"
},
"homepage": "https://github.com/collapsinghierarchy/noisytransfercli#readme",
"scripts": {
"clean": "rimraf dist .turbo .tsbuildinfo",
"lint": "eslint .",
"fmt": "prettier -w .",
"fmt:check": "prettier -c .",
"typecheck": "tsc -p tsconfig.dts.json --noEmit",
"build": "tsup && tsc -p tsconfig.dts.json",
"dev": "tsup --watch",
"pretest": "npm run build",
"test": "npm run build && node --test",
"test:dtls": "node --test test/integration/cli_dtls_e2e.test.mjs",
"test:pq": "node --test test/integration/cli_pq_e2e.test.mjs",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"release": "changeset version && npm i && git add -A && git commit -m \"chore: release\" && npm publish"
},
"dependencies": {
"@noisytransfer/constants": "^0.2.2",
"@noisytransfer/crypto": "^0.2.3",
"@noisytransfer/errors": "^0.2.2",
"@noisytransfer/noisyauth": "^0.2.4",
"@noisytransfer/noisystream": "^0.2.6",
"@noisytransfer/transport": "^0.2.4",
"@noisytransfer/util": "^0.2.2",
"commander": "^12.1.0",
"micromatch": "^4.0.7",
"tar-stream": "^3.1.7",
"ws": "^8.17.0"
},
"optionalDependencies": {
"@roamhq/wrtc": "^0.9.1",
"@roamhq/wrtc-win32-x64": "^0.9.1",
"@roamhq/wrtc-linux-x64": "^0.9.1",
"@roamhq/wrtc-linux-arm64": "^0.9.1",
"@roamhq/wrtc-darwin-x64": "^0.9.1",
"@roamhq/wrtc-darwin-arm64": "^0.9.1"
},
"devDependencies": {
"@changesets/cli": "^2.0.0",
"@noisytransfer/test-helpers": "^0.2.3",
"@types/node": "^22.0.0",
"esbuild": "^0.25.9",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.0.0",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"rimraf": "^6.0.0",
"socks-proxy-agent": "^8.0.2",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"overrides": {
"error-ex": "1.3.2",
"is-arrayish": "0.3.2",
"color-name": "2.0.0",
"slice-ansi": "7.1.2",
"debug": "4.4.1",
"chalk": "5.6.2"
},
"keywords": [
"cli",
"webrtc",
"e2ee",
"file-transfer",
"hpke",
"dtls",
"p2p"
],
"publishConfig": {
"access": "public"
}
}