-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.7 KB
/
package.json
File metadata and controls
49 lines (49 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
46
47
48
49
{
"name": "codex-remote",
"private": true,
"type": "module",
"scripts": {
"dev": "bunx --bun vite",
"dev:all": "bun --env-file .env bin/dev-local.ts",
"build": "bunx --bun vite build",
"lint": "bunx eslint .",
"typecheck": "bunx tsc -p tsconfig.json --noEmit && bunx tsc -p services/anchor/tsconfig.json --noEmit && bunx tsc -p services/orbit/tsconfig.json --noEmit",
"test": "bun test src/lib/**/*.test.ts && python -m pytest -q services/control-plane/tests && bun --cwd services/orbit test",
"ci:local": "bun run lint && bun run typecheck && bun run test && bun --env-file .env.example run build",
"preview": "bunx --bun vite preview --port 4173",
"deploy": "bun run build && bunx wrangler pages deploy dist --project-name codex-remote --branch main",
"migrate": "bunx wrangler d1 migrations apply codex-remote --remote",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,svelte}": [
"eslint --fix"
]
},
"dependencies": {
"@pierre/diffs": "^1.0.6",
"qrcode": "^1.5.4",
"@simplewebauthn/browser": "^11.0.0",
"dompurify": "^3.3.1",
"highlight.js": "^11.11.1",
"marked": "^17.0.1",
"sv-router": "^0.13.0",
"svelte": "^5.0.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@types/dompurify": "^3.2.0",
"@types/node": "^25.1.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^3.14.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^15.2.11",
"svelte-eslint-parser": "^1.4.1",
"typescript": "^5.7.0",
"vite": "^6.0.0"
}
}