-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.47 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
{
"name": "promptcase",
"private": true,
"version": "1.0.0",
"description": "A desktop app for managing, versioning, and composing LLM prompt templates",
"author": "Promptcase Contributors",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/promptcase/promptcase"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"test": "vitest run",
"test:watch": "vitest",
"test:rust": "cd src-tauri && cargo test",
"test:all": "npm run test && npm run test:rust"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.0",
"@codemirror/commands": "^6.7.0",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/lang-yaml": "^6.1.0",
"@codemirror/language": "^6.10.0",
"@codemirror/merge": "^6.7.0",
"@codemirror/search": "^6.5.0",
"@codemirror/state": "^6.5.0",
"@codemirror/view": "^6.35.0",
"@lezer/highlight": "^1.2.0",
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/plugin-dialog": "^2.7.0",
"codemirror": "^6.0.0",
"svelte-spa-router": "^4.0.1"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tauri-apps/cli": "^2.2.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/svelte": "^5.2.0",
"jsdom": "^25.0.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
}
}