-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.33 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.33 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
{
"name": "nullroom-cli",
"version": "0.1.0",
"description": "Post-quantum encrypted P2P communication from the terminal",
"module": "src/index.ts",
"type": "module",
"private": true,
"bin": {
"nr": "src/index.ts"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build ./src/index.ts --compile --outfile nr",
"build:linux-x64": "bun build ./src/index.ts --compile --target=bun-linux-x64 --outfile nr-linux-x64",
"build:linux-arm64": "bun build ./src/index.ts --compile --target=bun-linux-arm64 --outfile nr-linux-arm64",
"build:darwin-x64": "bun build ./src/index.ts --compile --target=bun-darwin-x64 --outfile nr-darwin-x64",
"build:darwin-arm64": "bun build ./src/index.ts --compile --target=bun-darwin-arm64 --outfile nr-darwin-arm64",
"build:windows-x64": "bun build ./src/index.ts --compile --target=bun-windows-x64 --outfile nr-windows-x64.exe",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration"
},
"devDependencies": {
"@types/bun": "latest",
"@types/ws": "^8.18.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"commander": "^14.0.3",
"mlkem": "^2.7.0",
"werift": "^0.23.0",
"ws": "^8.20.0"
}
}