-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
83 lines (83 loc) · 2.81 KB
/
package.json
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
{
"name": "prompta",
"version": "5.4.4",
"private": true,
"scripts": {
"dev:tauri": "tauri dev",
"build": "tauri build",
"//build:debug": "this can be done easily from the CLI, so this is more for documentation",
"build:debug": "tauri build --debug",
"dev": "vite dev --host 0.0.0.0",
"ui:dev": "bun run dev",
"ui:build": "cross-env NODE_ENV=production vite build",
"ui:build-static": "cross-env NODE_ENV=production SVELTE_ADAPTER=static vite build",
"dev:server": "bunx tsx --tsconfig ./tsconfig.server.json --watch ./sync-server/server.ts",
"prod:server": "tsc -p ./tsconfig.server.json; NODE_ENV=production node ./dist-server/server.js",
"build:server": "tsc -p ./tsconfig.server.json",
"release": "direnv reload && yarn version && ./scripts/release.sh",
"gh:publish": "./scripts/publish.sh",
"preview": "vite preview",
"test:browser": "playwright test --retries=2",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.7.3",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tailwindcss/typography": "0.5.9",
"@tauri-apps/cli": "^2.0.4",
"@types/better-sqlite3": "7.6.8",
"@types/marked": "^4.3.2",
"@types/prismjs": "1.26.0",
"autoprefixer": "~10.4.20",
"cross-env": "7.0.3",
"postcss": "~8.4.47",
"postcss-load-config": "~4.0.2",
"posthog-js": "1.56.0",
"svelte": "^5.1.4",
"svelte-check": "~4.0.5",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^3.4.14",
"tslib": "~2.4.1",
"tsx": "4.6.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-top-level-await": "1.4.4",
"vite-plugin-wasm": "3.3.0"
},
"type": "module",
"dependencies": {
"@anthropic-ai/sdk": "^0.33.1",
"@fastify/cors": "8.4.2",
"@radix-ui/react-progress": "1.0.3",
"@tauri-apps/api": "^2.0.3",
"@tauri-apps/plugin-dialog": "^2.0.1",
"@tauri-apps/plugin-fs": "^2.0.1",
"@tauri-apps/plugin-shell": "^2.0.1",
"@vlcn.io/crsqlite": "0.16.3",
"@vlcn.io/crsqlite-wasm": "0.16.0",
"@vlcn.io/rx-tbl": "0.15.0",
"@vlcn.io/ws-common": "0.2.0",
"@vlcn.io/xplat-api": "0.15.0",
"better-sqlite3": "9.2.2",
"bits-ui": "^0.21.16",
"classnames": "2.3.2",
"clsx": "2.1.1",
"cmdk-sv": "0.0.18",
"fastify": "4.24.3",
"lucide-svelte": "0.454.0",
"marked": "^4.3.0",
"mode-watcher": "0.4.1",
"nanoid": "4.0.2",
"openai": "^4.77.4",
"prism-svelte": "0.5.0",
"prismjs": "1.29.0",
"svelte-markdown": "0.4.1",
"svelte-sonner": "0.3.28",
"tailwind-merge": "2.1.0",
"tailwind-variants": "0.1.19",
"uuid": "9.0.0"
}
}