-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"name": "git-calendar-web",
"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",
"format": "prettier --write --experimental-cli src/",
"fetch-wasm": "curl -L -o src/assets/core.wasm https://github.com/git-calendar/core/releases/download/v0.0.6/core.wasm",
"fetch-wasm-latest": "curl -L -o src/assets/core.wasm https://github.com/git-calendar/core/releases/latest/download/core.wasm"
},
"dependencies": {
"@vueuse/core": "^14.2.1",
"luxon": "^3.7.2",
"uuid": "^14.0.0",
"vue": "^3.5.33",
"vue-i18n": "^11.4.0",
"vue-icons-plus": "^0.1.9",
"vue-router": "^5.0.6"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/luxon": "^3.7.1",
"@types/node": "^25.6.0",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/tsconfig": "^0.9.1",
"npm-run-all2": "^8.0.4",
"prettier": "3.8.3",
"typescript": "~6.0.3",
"vite": "^8.0.10",
"vite-plugin-vue-devtools": "^8.1.1",
"vue-tsc": "^3.2.7"
}
}