|
1 | 1 | { |
2 | 2 | "name": "@noisytransfer/cli", |
3 | | - "version": "0.2.1", |
| 3 | + "version": "0.2.2", |
4 | 4 | "description": "Fast E2EE WebRTC file transfer (DTLS by default, optional PQ) with human-readable pairing codes.", |
5 | 5 | "license": "AGPL-3.0-only", |
6 | 6 | "type": "module", |
7 | | - |
8 | 7 | "bin": { |
9 | 8 | "nt": "./dist/nt.js" |
10 | 9 | }, |
11 | | - |
12 | 10 | "main": "./dist/index.cjs", |
13 | 11 | "module": "./dist/index.js", |
14 | 12 | "types": "dist/types/index.d.ts", |
15 | | - |
16 | 13 | "exports": { |
17 | 14 | ".": { |
18 | 15 | "types": "./dist/types/index.d.ts", |
|
27 | 24 | "require": "./dist/env/rtc-init.cjs" |
28 | 25 | } |
29 | 26 | }, |
30 | | - |
31 | 27 | "engines": { |
32 | 28 | "node": ">=22" |
33 | 29 | }, |
34 | | - |
35 | 30 | "files": [ |
36 | 31 | "dist", |
37 | 32 | "README.md", |
38 | 33 | "LICENSE" |
39 | 34 | ], |
40 | | - |
41 | 35 | "sideEffects": [ |
42 | 36 | "./src/env/node-polyfills.js" |
43 | 37 | ], |
44 | | - |
45 | 38 | "repository": { |
46 | 39 | "type": "git", |
47 | 40 | "url": "git+https://github.com/collapsinghierarchy/noisytransfercli.git" |
|
50 | 43 | "url": "https://github.com/collapsinghierarchy/noisytransfercli/issues" |
51 | 44 | }, |
52 | 45 | "homepage": "https://github.com/collapsinghierarchy/noisytransfercli#readme", |
53 | | - |
54 | 46 | "scripts": { |
55 | 47 | "clean": "rimraf dist .turbo .tsbuildinfo", |
56 | 48 | "lint": "eslint .", |
57 | 49 | "fmt": "prettier -w .", |
58 | 50 | "fmt:check": "prettier -c .", |
59 | 51 | "typecheck": "tsc -p tsconfig.dts.json --noEmit", |
60 | | - |
61 | 52 | "build": "tsup && tsc -p tsconfig.dts.json", |
62 | 53 | "dev": "tsup --watch", |
63 | | - |
64 | 54 | "pretest": "npm run build", |
65 | 55 | "test": "npm run build && node --test", |
66 | 56 | "test:dtls": "node --test test/integration/cli_dtls_e2e.test.mjs", |
67 | 57 | "test:pq": "node --test test/integration/cli_pq_e2e.test.mjs", |
68 | | - |
69 | 58 | "prepublishOnly": "npm run clean && npm run build && npm run test", |
70 | 59 | "release": "changeset version && npm i && git add -A && git commit -m \"chore: release\" && npm publish" |
71 | 60 | }, |
72 | | - |
73 | 61 | "dependencies": { |
74 | 62 | "@noisytransfer/constants": "^0.2.2", |
75 | 63 | "@noisytransfer/crypto": "^0.2.3", |
|
83 | 71 | "tar-stream": "^3.1.7", |
84 | 72 | "ws": "^8.17.0" |
85 | 73 | }, |
86 | | - |
87 | 74 | "optionalDependencies": { |
88 | 75 | "@roamhq/wrtc": "^0.9.1", |
89 | 76 | "@roamhq/wrtc-win32-x64": "^0.9.1", |
|
92 | 79 | "@roamhq/wrtc-darwin-x64": "^0.9.1", |
93 | 80 | "@roamhq/wrtc-darwin-arm64": "^0.9.1" |
94 | 81 | }, |
95 | | - |
96 | 82 | "devDependencies": { |
97 | 83 | "@changesets/cli": "^2.0.0", |
98 | 84 | "@noisytransfer/test-helpers": "^0.2.3", |
|
109 | 95 | "tsup": "^8.0.0", |
110 | 96 | "typescript": "^5.0.0" |
111 | 97 | }, |
112 | | - |
113 | 98 | "overrides": { |
114 | 99 | "error-ex": "1.3.2", |
115 | 100 | "is-arrayish": "0.3.2", |
|
118 | 103 | "debug": "4.4.1", |
119 | 104 | "chalk": "5.6.2" |
120 | 105 | }, |
121 | | - |
122 | 106 | "keywords": [ |
123 | 107 | "cli", |
124 | 108 | "webrtc", |
|
128 | 112 | "dtls", |
129 | 113 | "p2p" |
130 | 114 | ], |
131 | | - |
132 | 115 | "publishConfig": { |
133 | 116 | "access": "public" |
134 | 117 | } |
|
0 commit comments