-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 3.04 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": "llm-space",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "cd apps/desktop && bun run dev:hmr",
"dev:cef": "cd apps/desktop && bun run dev:cef",
"dev:web": "bun --filter @llm-space/web dev",
"build:canary": "cd apps/desktop && bun run build:canary",
"build:stable": "cd apps/desktop && bun run build:stable",
"build:web": "bun --filter @llm-space/web build",
"pack:server": "bun --filter @llm-space/server pack",
"preview:web": "bun --filter @llm-space/web preview",
"release": "bun scripts/release.ts",
"release:canary": "bun scripts/release.ts --prerelease canary",
"gen:langgraph-tools": "bun scripts/gen-langgraph-tools.ts",
"test": "bun test",
"check:changed": "bun scripts/check-changed.ts all",
"lint:changed": "bun scripts/check-changed.ts lint",
"lint:changed:fix": "bun scripts/check-changed.ts lint:fix",
"typecheck:changed": "bun scripts/check-changed.ts typecheck",
"lint": "NODE_OPTIONS=--max-old-space-size=8192 eslint --max-warnings 0 .",
"lint:fix": "NODE_OPTIONS=--max-old-space-size=8192 eslint --fix .",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p packages/runtime/tsconfig.json && tsc --noEmit -p packages/ui/tsconfig.json && tsc --noEmit -p apps/desktop/tsconfig.json && tsc --noEmit -p apps/web/tsconfig.json && tsc --noEmit -p apps/server/tsconfig.json && tsc --noEmit -p examples/atlas-plugin/tsconfig.json",
"prepare": "husky",
"dev:server": "bun --filter @llm-space/server dev"
},
"lint-staged": {
"*.{js,mjs,cjs,ts,mts,cts,jsx,tsx}": "eslint --fix"
},
"catalog": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@earendil-works/pi-ai": "^0.85.1",
"@earendil-works/pi-agent-core": "^0.85.1",
"@tanstack/react-virtual": "^3.14.9",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"typebox": "^1.3.10",
"zod": "^4.4.3"
},
"overrides": {
"@codemirror/lang-html": "6.4.12",
"@codemirror/lang-markdown": "6.5.2",
"@codemirror/state": "6.7.1",
"@codemirror/view": "6.43.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"commit-and-tag-version": "^12.7.3",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0"
},
"dependencies": {
"@earendil-works/pi-agent-core": "catalog:",
"@earendil-works/pi-ai": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"typebox": "catalog:"
},
"patchedDependencies": {
"@earendil-works/pi-ai@0.85.1": "patches/@earendil-works%2Fpi-ai@0.85.1.patch"
}
}