-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.22 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.22 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
83
84
85
86
87
88
89
90
{
"name": "openkit",
"version": "0.0.66",
"private": true,
"description": "Your local kit for agentic development",
"homepage": "https://dawg-chi.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/fum4/openkit.git"
},
"type": "module",
"scripts": {
"setup": "bash ./scripts/setup.sh",
"dev": "pnpm nx run-many -t dev --parallel=6",
"dev:cli": "pnpm nx run cli:dev",
"dev:server": "pnpm nx run server:dev",
"dev:website": "pnpm nx run website:dev",
"dev:web-app": "pnpm nx run-many -t dev --projects server,web-app --parallel=2",
"dev:mobile-app": "pnpm nx run mobile-app:dev",
"dev:desktop-app": "pnpm nx run-many -t dev --projects web-app,cli,desktop-app --parallel=3",
"build": "pnpm nx run-many -t build --parallel",
"build:cli": "pnpm nx run cli:build",
"build:server": "pnpm nx run server:build",
"build:website": "pnpm nx run website:build",
"build:web-app": "pnpm nx run web-app:build",
"build:mobile-app": "pnpm nx run mobile-app:build",
"build:desktop-app": "pnpm nx run desktop-app:build",
"package": "pnpm nx run desktop-app:package",
"package:mac": "pnpm nx run desktop-app:package:mac",
"package:linux": "pnpm nx run desktop-app:package:linux",
"test:unit": "pnpm nx run-many -t test:unit --parallel",
"test:unit:affected": "pnpm nx affected -t test:unit --parallel --base=${NX_BASE:-origin/master} --head=${NX_HEAD:-HEAD}",
"test:unit:coverage": "pnpm nx run-many -t test:unit:coverage --parallel",
"test:e2e": "pnpm nx run-many -t test:e2e --parallel",
"test:e2e:ui": "pnpm nx run-many -t test:e2e:ui --parallel",
"test:e2e:report": "pnpm nx run-many -t test:e2e:report --parallel",
"check:types": "pnpm nx run-many -t check:types --parallel",
"check:format": "oxfmt --check .",
"check:lint": "oxlint .",
"check:all": "oxfmt --check . && oxlint . && pnpm nx run-many -t check:types --parallel",
"check:affected": "oxfmt --check . && oxlint . && pnpm nx affected -t check:types --parallel --base=${NX_BASE:-origin/master} --head=${NX_HEAD:-HEAD}",
"fix:format": "oxfmt .",
"fix:lint": "oxlint --fix .",
"fix:all": "oxfmt . && oxlint --fix .",
"smoke": "oxfmt . && oxlint --fix . && pnpm nx run-many -t build,check:types,test:unit,test:e2e --parallel",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@typescript/native-preview": "7.0.0-dev.20260226.1",
"@vitest/coverage-v8": "^4.0.18",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"nx": "^22.5.2",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"release-it": "^19.2.4",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{cjs,cts,js,jsx,mjs,mts,ts,tsx}": [
"oxfmt --check",
"oxlint"
],
"!(*lock*).{css,html,json,md,mdx,scss,yaml,yml}": "oxfmt --check"
},
"engines": {
"node": ">=18",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.30.1",
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild",
"koffi",
"node-pty",
"sharp"
],
"ignoredBuiltDependencies": [
"electron-winstaller",
"msw",
"nx"
]
}
}