-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.99 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
{
"name": "prompt-studio",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "AI 提示词版本管理与编辑工具",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:nocheck": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\""
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/container-queries": "^0.1.1",
"dexie": "^3.2.4",
"diff-match-patch": "^1.0.5",
"file-saver": "^2.0.5",
"framer-motion": "^10.16.16",
"js-sha256": "^0.10.1",
"jszip": "^3.10.1",
"monaco-editor": "^0.49.0",
"nanoid": "^5.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"react-zoom-pan-pinch": "^3.4.3",
"webdav": "^5.3.1",
"zustand": "^4.4.7"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@playwright/test": "^1.40.1",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/diff-match-patch": "^1.0.36",
"@types/file-saver": "^2.0.7",
"@types/node": "^24.10.1",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^1.0.4",
"autoprefixer": "^10.4.22",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"fake-indexeddb": "^5.0.1",
"jsdom": "^23.0.1",
"msw": "^2.0.11",
"postcss": "^8.5.6",
"prettier": "^3.1.1",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-plugin-pwa": "^1.1.0",
"vitest": "^1.0.4"
}
}