-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.37 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.37 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
{
"name": "ultra-secure-messenger",
"version": "1.0.0",
"description": "Ultra-secure end-to-end encrypted messaging platform",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:browser": "node build-browser.mjs",
"build:proto": "protoc --ts_out=src/proto --proto_path=proto proto/*.proto || echo 'Note: protoc not installed, skipping proto build (optional)'",
"build:all": "npm run build && npm run build:browser && npm run build:proto",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"test:security": "npm test -- tests/security",
"lint": "eslint src --ext .ts --max-warnings 0",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"audit": "npm audit --audit-level=moderate",
"audit:fix": "npm audit fix",
"security:check": "npm run audit && npm run lint && npm run test:security",
"server": "node dist/server/index.js",
"dev": "tsx watch src/server/index.ts",
"client": "cd client && node server.js",
"client:dev": "cd client && node --watch server.js",
"preinstall": "npx only-allow npm",
"prepare": "husky install || true"
},
"keywords": [
"messaging",
"encryption",
"e2ee",
"security",
"cryptography"
],
"author": "",
"license": "MIT",
"dependencies": {
"@noble/curves": "1.2.0",
"@noble/hashes": "1.3.3",
"protobufjs": "7.2.5",
"uuid": "9.0.1",
"ws": "^8.19.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "20.10.6",
"@types/uuid": "9.0.7",
"@types/ws": "8.5.10",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"audit-ci": "^6.6.1",
"esbuild": "0.27.2",
"eslint": "8.56.0",
"eslint-plugin-security": "^2.1.0",
"husky": "^8.0.3",
"jest": "29.7.0",
"lint-staged": "^15.2.0",
"prettier": "3.1.1",
"ts-jest": "29.1.1",
"tsx": "^4.21.0",
"typescript": "5.3.3"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"overrides": {
"@noble/curves": "1.2.0",
"@noble/hashes": "1.3.3"
}
}