-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.32 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.32 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
{
"name": "qryptchat-web",
"private": true,
"version": "0.0.1",
"type": "module",
"bin": {
"qryptchat": "./bin/qryptchat-cli.js"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.32.1",
"scripts": {
"cli": "node bin/qryptchat-cli.js",
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"icons:generate": "node scripts/generate-icons.js",
"icons:install": "scripts/install-desktop-icons.sh",
"postinstall": "command -v pnpm && pnpm dlx @socketsecurity/socket-patch apply --silent --ecosystems npm || true",
"dependencies": "command -v pnpm && pnpm dlx @socketsecurity/socket-patch apply --silent --ecosystems npm || true"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/ui": "^4.1.8",
"chai": "^6.0.1",
"eslint": "^9.39.2",
"eslint-config-next": "^15.0.0",
"jsdom": "^26.1.0",
"mocha": "^11.7.5",
"msw": "^2.10.5",
"prettier": "^3.6.2",
"sharp": "^0.34.4",
"sinon": "^21.0.0",
"typescript": "^5.0.0",
"vitest": "^4.1.8",
"ws": "^8.18.3"
},
"dependencies": {
"@noble/ciphers": "^2.0.0",
"@noble/hashes": "^2.0.0",
"@profullstack/autoblog": "github:profullstack/autoblog#75e54af",
"@profullstack/text-type-detection": "^1.0.0",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.56.0",
"blessed": "^0.1.81",
"dilithium-crystals": "^1.0.6",
"dotenv": "^17.2.2",
"form-data": "^4.0.4",
"mailgun.js": "^12.0.3",
"mlkem": "^2.5.0",
"next": "^15.0.0",
"openpgp": "^6.2.0",
"posthog-js": "^1.381.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"twilio": "^5.12.0",
"uuid": "^11.1.0",
"webrtc-adapter": "^9.0.3",
"zustand": "^5.0.0"
},
"overrides": {
"glob": ">=10.5.0",
"jws": ">=3.2.3",
"js-yaml": ">=4.1.1",
"cookie": "1.1.1",
"diff": "8.0.4",
"serialize-javascript": ">=7.0.5",
"postcss": ">=8.5.10",
"axios": ">=1.8.2"
}
}