-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 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
39
40
41
42
43
44
45
46
47
{
"name": "sovereign",
"private": true,
"description": "Self-hosted multi-org development platform with AI agents, voice, and planning",
"license": "MIT",
"author": "Josh Field",
"repository": {
"type": "git",
"url": "https://github.com/HexaField/sovereign.git"
},
"bin": {
"sovereign": "./bin/sovereign"
},
"type": "module",
"scripts": {
"dev": "concurrently \"pnpm --filter @sovereign/client dev\" \"pnpm --filter @sovereign/server dev\"",
"build": "pnpm -r --if-present build",
"start": "pnpm --filter @sovereign/server start",
"test": "pnpm -r test",
"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"
},
"devDependencies": {
"@fastify/pre-commit": "^2.2.1",
"@types/node": "^25.0.3",
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.23.0",
"oxlint": "^1.38.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"oxlint --fix",
"oxfmt --write"
],
"*.{json,css,md,html}": [
"oxfmt --write"
]
}
}