-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.29 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.29 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
{
"name": "copilot-unleashed",
"version": "2.0.1",
"description": "Copilot Unleashed — Self-hosted multi-model AI chat powered by the GitHub Copilot SDK",
"main": "build/index.js",
"scripts": {
"build:server": "tsc -p tsconfig.node.json",
"build": "npm run build:server && vite build",
"start": "node server.js",
"dev": "docker compose up --build",
"dev:down": "docker compose down",
"build:check": "npm run build && node --env-file=.env server.js",
"bundle-sessions": "node scripts/bundle-sessions.mjs",
"sync:push": "node scripts/sync-push.mjs",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"clean": "rm -rf build dist .svelte-kit",
"postinstall": "node scripts/patch-sdk.mjs",
"prepare": "git rev-parse --git-dir > /dev/null 2>&1 && husky || true"
},
"keywords": [
"copilot",
"github",
"ai-chat",
"multi-model",
"sveltekit",
"self-hosted",
"copilot-sdk"
],
"license": "MIT",
"type": "module",
"private": true,
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@github/copilot-sdk": "^0.2.2",
"@sveltejs/adapter-node": "^5.5.4",
"@sveltejs/kit": "^2.57.1",
"dompurify": "^3.4.0",
"express-session": "^1.18.0",
"highlight.js": "^11.11.1",
"lucide-svelte": "^1.0.1",
"marked": "^18.0.0",
"session-file-store": "^1.5.0",
"svelte": "^5.55.3",
"vite": "^8.0.8",
"web-push": "^3.6.7",
"ws": "^8.18.0"
},
"lint-staged": {
"*.{ts,svelte}": [
"vitest related --run"
]
},
"overrides": {
"cookie": "^0.7.0"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@types/express-session": "^1.18.0",
"@types/node": "^25.6.0",
"@types/session-file-store": "^1.2.6",
"@types/web-push": "^3.6.4",
"@types/ws": "^8.5.13",
"@vitest/coverage-v8": "^4.1.4",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"sharp": "^0.34.5",
"svelte-check": "^4.4.6",
"typescript": "^6.0.2",
"vitest": "^4.1.3"
}
}