-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.21 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
{
"name": "edit-markdown",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix --cache",
"format": "prettier --write src/",
"test": "vitest --run --passWithNoTests --exclude '**/auth-core/**' --exclude '**/shared/theme/**'",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"check:i18n": "node --import jiti/register src/i18n/check.ts",
"validate:i18n-keys": "node --import jiti/register src/i18n/check.ts --json",
"validate:mocks": "node scripts/validate-mock-data.mjs",
"validate:mocks:verbose": "node scripts/validate-mock-data.mjs --verbose",
"validate:mocks:strict": "node scripts/validate-mock-data.mjs --strict",
"sync:theme-bootstrap": "node ../scripts/sync-theme-bootstrap.mjs",
"verify:theme-sync": "node ../scripts/verify-theme-sync.mjs",
"verify:typography-tokens": "node ../scripts/verify-typography-tokens.mjs"
},
"dependencies": {
"@internationalized/date": "^3.12.1",
"@mdit/plugin-katex": "^0.25.2",
"@monaco-editor/loader": "^1.7.0",
"@stomp/stompjs": "^7.3.0",
"@tabler/icons-vue": "^3.36.1",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/vue-virtual": "^3.13.18",
"@unovis/ts": "^1.6.2",
"@unovis/vue": "^1.6.2",
"@vue-dnd-kit/core": "1.7.0",
"@vueuse/core": "^14.1.0",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.4.5",
"echarts": "^6.1.0",
"gsap": "^3.15.0",
"highlight.js": "^11.11.1",
"idb": "^8.0.3",
"katex": "^0.17.0",
"lenis": "^1.3.25",
"lucide-vue-next": "^0.552.0",
"markdown-it": "^14.1.1",
"monaco-editor": "^0.55.1",
"pinia": "^3.0.4",
"reka-ui": "^2.9.8",
"sockjs-client": "^1.6.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"three": "^0.165.0",
"tw-animate-css": "^1.4.0",
"vue": "^3.5.34",
"vue-i18n": "^11.4.4",
"vue-router": "^5.0.7",
"vue-sonner": "^2.0.9",
"workbox-window": "^7.4.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.109",
"@iconify-json/radix-icons": "^1.2.6",
"@tailwindcss/typography": "^0.5.19",
"@tsconfig/node22": "^22.0.5",
"@types/katex": "^0.16.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.9.1",
"@types/sockjs-client": "^1.5.4",
"@types/three": "^0.165.0",
"@vitejs/plugin-vue": "^6.0.7",
"@vitejs/plugin-vue-jsx": "^5.1.5",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^2.4.10",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.4.0",
"eslint-plugin-vue": "^10.9.1",
"jiti": "^2.7.0",
"jsdom": "^29.1.1",
"knip": "^6.14.2",
"npm-run-all2": "^9.0.1",
"prettier": "3.8.3",
"typescript": "~6.0.3",
"unplugin-icons": "^23.0.1",
"vite": "^8.0.16",
"vite-plugin-pwa": "^1.3.0",
"vite-plugin-vue-devtools": "^8.1.2",
"vitest": "^4.1.7",
"vue-tsc": "^3.3.1"
}
}