-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.39 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.39 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "clanki",
"version": "0.1.0",
"private": true,
"description": "Clanki desktop application",
"author": "Ruud Andriessen",
"repository": {
"type": "git",
"url": "git@github.com:ruudandriessen/clanki.ai.git"
},
"workspaces": [
"packages/*"
],
"type": "module",
"main": "packages/desktop-shell/dist/index.mjs",
"scripts": {
"dev": "vite dev",
"build:web": "vite build",
"build": "bun run build:web && bun run --cwd packages/runner build && bun run --cwd packages/desktop-shell build && tsc --noEmit",
"preview": "vite preview",
"runner:dev": "bun run --cwd packages/runner dev",
"electron:start": "bun run build && electron packages/desktop-shell/dist/index.mjs",
"electron:build": "bun run build",
"electron:dev": "bun run --cwd packages/desktop-shell build && concurrently -k \"bun run --cwd packages/desktop-shell dev\" \"bun run dev -- --host 127.0.0.1 --port 1420\" \"CLANKI_ELECTRON_DEV_URL=http://127.0.0.1:1420 electron packages/desktop-shell/dist/index.mjs\"",
"package:desktop": "bun run build && electron-builder --publish never",
"release:desktop": "bun run build && electron-builder --publish always",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"db:migrate": "DATABASE_URL=\"${DATABASE_URL:-$(grep '^DATABASE_URL=' .env | cut -d= -f2-)}\" sh -c '[ -n \"$DATABASE_URL\" ] || { echo \"Missing DATABASE_URL\"; exit 1; }; drizzle-kit migrate --config drizzle.config.ts'",
"db:push": "DATABASE_URL=\"${DATABASE_URL:-$(grep '^DATABASE_URL=' .env | cut -d= -f2-)}\" sh -c '[ -n \"$DATABASE_URL\" ] || { echo \"Missing DATABASE_URL\"; exit 1; }; drizzle-kit push --config drizzle.config.ts'",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"knip": "knip",
"test": "bun test",
"deploy": "bunx vercel deploy --prod"
},
"dependencies": {
"@durable-streams/client": "^0.2.1",
"@electric-sql/client": "^1.5.4",
"@octokit/webhooks": "^14.2.0",
"@opencode-ai/sdk": "^1.2.1",
"@pierre/diffs": "^1.0.11",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/electric-db-collection": "^0.2.33",
"@tanstack/hotkeys": "^0.4.1",
"@tanstack/react-db": "0.1.70",
"@tanstack/react-hotkeys": "^0.4.1",
"@tanstack/react-query": "^5.90.5",
"@tanstack/react-router": "^1.162.8",
"@tanstack/react-start": "^1.162.8",
"better-auth": "^1.4.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.563.0",
"motion": "^12.35.1",
"nitro": "^3.0.1-alpha.2",
"postgres": "^3.4.8",
"radix-ui": "^1.4.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"vite-tsconfig-paths": "^6.1.1",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@types/node": "^24.3.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"babel-plugin-react-compiler": "^1.0.0",
"bun-types": "^1.3.8",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.8",
"electron": "^36.0.0",
"electron-builder": "^26.0.12",
"knip": "^5.82.1",
"oxfmt": "^0.27.0",
"oxlint": "^1.42.0",
"shadcn": "^3.8.4",
"tw-animate-css": "^1.4.0",
"typescript": "^5.7.0",
"vite": "^7.3.1"
},
"build": {
"appId": "ai.clanki.desktop",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"directories": {
"output": "release"
},
"files": [
"packages/desktop-shell/dist/**/*"
],
"extraResources": [
{
"from": ".output",
"to": ".output"
},
{
"from": "packages/runner/dist",
"to": "packages/runner/dist"
}
],
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"zip"
]
},
"linux": {
"category": "Development",
"target": [
"zip"
]
},
"win": {
"target": [
"zip"
]
},
"publish": [
{
"channel": "latest",
"owner": "ruudandriessen",
"provider": "github",
"repo": "clanki.ai",
"releaseType": "release"
}
]
},
"productName": "Clanki"
}