-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.29 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
{
"name": "harmony",
"version": "0.1.0",
"private": true,
"description": "Harmony — real-time communication platform with E2EE",
"author": "Josh Field",
"type": "module",
"scripts": {
"dev": "pnpm -r --if-present dev",
"build": "pnpm -r --if-present build",
"test": "pnpm -r test",
"rebuild:node": "cd node_modules/.pnpm/better-sqlite3@*/node_modules/better-sqlite3 && npx --yes node-gyp rebuild --release 2>/dev/null || true",
"rebuild:electron": "pnpm --filter @harmony/app electron:rebuild",
"certs": "mkdir -p .certs && openssl req -x509 -newkey rsa:2048 -keyout .certs/localhost.key -out .certs/localhost.cert -days 365 -nodes -subj \"/CN=localhost\"",
"lint": "oxlint --fix",
"format": "oxfmt --write",
"check": "pnpm -r check && oxlint",
"prepare": "husky",
"cap:init": "npx cap init Harmony chat.harmony.app --web-dir packages/ui-app/dist",
"cap:add:ios": "npx cap add ios",
"cap:add:android": "npx cap add android",
"cap:sync": "npx cap sync",
"cap:open:ios": "npx cap open ios",
"cap:open:android": "npx cap open android"
},
"dependencies": {
"@capacitor/android": "^8.1.0",
"@capacitor/app": "^8.0.1"
},
"devDependencies": {
"@capacitor/cli": "^6.2.1",
"@capacitor/core": "^6.2.1",
"@fastify/pre-commit": "^2.2.1",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^25.0.3",
"@types/supertest": "^7.2.0",
"concurrently": "^9.2.1",
"dotenv": "^17.3.1",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.2.7",
"oxfmt": "^0.23.0",
"oxlint": "^1.38.0",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite-plugin-solid": "^2.11.10",
"vitest": "^4.0.16"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"oxlint --fix",
"oxfmt --write"
],
"*.{json,css,md,html}": [
"oxfmt --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
],
"overrides": {
"tar@<=7.5.3": ">=7.5.4",
"lodash@>=4.0.0 <=4.17.22": ">=4.17.23",
"undici@<6.23.0": ">=6.23.0",
"tar@<7.5.7": ">=7.5.7",
"qs@<6.14.1": ">=6.14.1",
"qs@>=6.7.0 <=6.14.1": ">=6.14.2",
"tar@<=7.5.2": ">=7.5.3",
"tar@<7.5.8": ">=7.5.8"
}
}
}