-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
101 lines (101 loc) · 3.33 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"type": "module",
"private": true,
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"scripts": {
"tsx": "tsx",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"updateGadgets": "tsx ./scripts/updateGadgets.ts",
"purge": "tsx ./scripts/purgeCdnCache.ts",
"deploy": "pnpm run updateGadgets",
"build-deploy": "pnpm run build && pnpm run deploy",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"test": "vitest",
"test:ui": "vitest --ui",
"test:once": "vitest run",
"test:cov": "vitest run --coverage",
"test:cov:report": "serve ./coverage -L"
},
"dependencies": {
"@floating-ui/vue": "^1.1.6",
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@tiptap/core": "^2.11.5",
"@tiptap/extension-bold": "^2.11.5",
"@tiptap/extension-color": "^2.11.5",
"@tiptap/extension-document": "^2.11.5",
"@tiptap/extension-dropcursor": "^2.11.5",
"@tiptap/extension-gapcursor": "^2.11.5",
"@tiptap/extension-hard-break": "^2.11.5",
"@tiptap/extension-highlight": "^2.11.5",
"@tiptap/extension-history": "^2.11.5",
"@tiptap/extension-italic": "^2.11.5",
"@tiptap/extension-paragraph": "^2.11.5",
"@tiptap/extension-strike": "^2.11.5",
"@tiptap/extension-text": "^2.11.5",
"@tiptap/extension-text-style": "^2.11.5",
"@tiptap/extension-underline": "^2.11.5",
"@tiptap/pm": "^2.11.5",
"@tiptap/vue-3": "^2.11.5",
"@vueuse/core": "^12.5.0",
"@wikimedia/codex": "^1.20.1",
"@wikimedia/codex-design-tokens": "^1.20.1",
"@wikimedia/codex-icons": "^1.20.1",
"comlink": "^4.4.2",
"d3": "^7.9.0",
"spark-md5": "^3.0.2",
"three": "^0.162.0",
"vue": "^3.5.13",
"vue-i18n": "^11.1.0",
"zlibt2": "^0.6.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.16.0",
"@peculiar/webcrypto": "^1.5.0",
"@prettier/sync": "^0.5.2",
"@rushstack/eslint-patch": "^1.10.5",
"@tailwindcss/vite": "4.0.0",
"@testing-library/vue": "^8.1.0",
"@tsconfig/node20": "^20.1.4",
"@types/d3": "^7.4.3",
"@types/leaflet": "^1.9.16",
"@types/node": "^22.13.1",
"@types/spark-md5": "^3.0.5",
"@types/three": "^0.162.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/browser": "^3.0.5",
"@vitest/coverage-istanbul": "^3.0.5",
"@vitest/ui": "^3.0.5",
"@vue-macros/volar": "^0.30.14",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"babel-preset-typescript-vue3": "^2.0.17",
"dotenv": "^16.4.7",
"eslint": "^9.19.0",
"glob": "^11.0.1",
"jsdom": "^26.0.0",
"leaflet": "^1.9.4",
"less": "^4.2.2",
"mock-local-storage": "^1.1.24",
"mwn": "^2.0.4",
"playwright": "^1.50.1",
"prettier": "^3.4.2",
"rollup-plugin-visualizer": "^5.14.0",
"serve": "^14.2.4",
"tailwindcss": "^4.0.3",
"tsx": "^4.19.2",
"types-mediawiki": "^1.9.1",
"typescript": "^5.7.3",
"unplugin-vue-macros": "^2.14.1",
"vite": "^6.0.11",
"vite-plugin-comlink": "^5.1.0",
"vite-plugin-vue-devtools": "^7.7.1",
"vitest": "^3.0.5",
"vitest-browser-vue": "^0.1.0",
"vue-tsc": "https://pkg.pr.new/vuejs/language-tools/vue-tsc@3fb59af"
}
}