-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.7 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
{
"name": "codeoid-web",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build --base=/ui/",
"preview": "vite preview",
"typecheck": "tsc -b --noEmit",
"lint": "eslint src",
"test": "NODE_OPTIONS=\"--max-old-space-size=4096\" vitest run --pool=forks --poolOptions.forks.singleFork=true"
},
"//overrides": "web/ is its own install root (separate lockfile, vitest+vite toolchain), so the workspace packages come in as file: copies. @highflame/codeoid-core peer-depends on @highflame/codeoid-protocol by RANGE, which bun tries to satisfy from the registry — pin it to the in-repo copy so `bun install` here never depends on what has been published. Keeps the web build reproducible against the working tree, which is the whole point of the file: deps.",
"overrides": {
"@highflame/codeoid-protocol": "file:../packages/protocol"
},
"dependencies": {
"@highflame/codeoid-core": "file:../packages/core",
"@highflame/codeoid-protocol": "file:../packages/protocol",
"@floating-ui/dom": "^1.7.6",
"@tanstack/solid-virtual": "^3.13.24",
"@types/diff": "^8.0.0",
"diff": "^9.0.0",
"motion": "^12.38.0",
"remark-gfm": "^4.0.0",
"shiki": "^4.0.2",
"solid-js": "^1.9.12",
"solid-markdown": "^2.1.1"
},
"devDependencies": {
"@solidjs/testing-library": "^0.8.10",
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^22.10.0",
"eslint": "^9.16.0",
"eslint-plugin-solid": "^0.14.5",
"jsdom": "^29.1.1",
"tailwindcss": "^4.2.4",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.4.2",
"vite-plugin-solid": "^2.11.12",
"vitest": "^2.1.8"
}
}