-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.64 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
{
"name": "@pueue-ui/root",
"type": "module",
"private": true,
"author": "BeeeQueue <adam@haglund.dev>",
"license": "MIT",
"packageManager": "pnpm@10.28.2",
"engines": {
"node": "^25"
},
"lint-staged": {
"*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,json,vue}": [
"oxlint --type-aware --type-check",
"oxfmt --no-error-on-unmatched-pattern"
]
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/lint-staged"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "oxlint --type-aware --type-check --report-unused-disable-directives",
"start": "node .output/server/index.mjs",
"test": "node --test",
"typecheck": "vue-tsc"
},
"dependencies": {
"@vueuse/core": "14.2.0",
"cbor-x": "1.6.0",
"evlog": "1.6.0",
"nitro": "3.0.1-alpha.2",
"temporal-polyfill": "0.3.0",
"vue": "catalog:"
},
"devDependencies": {
"@e18e/eslint-plugin": "0.1.4",
"@iconify-json/lucide": "1.2.89",
"@iconify-json/svg-spinners": "1.2.4",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/node": "25.2.2",
"@unocss/preset-icons": "66.6.0",
"@unocss/preset-wind3": "66.6.0",
"@unocss/reset": "66.6.0",
"@unocss/transformer-compile-class": "66.6.0",
"@unocss/transformer-directives": "66.6.0",
"@unocss/vite": "66.6.0",
"@vitejs/plugin-vue": "6.0.4",
"lint-staged": "16.2.7",
"oxfmt": "0.28.0",
"oxlint": "1.43.0",
"oxlint-tsgolint": "0.11.5",
"simple-git-hooks": "2.13.1",
"sonda": "0.10.2",
"vite": "catalog:",
"vue-router": "https://pkg.pr.new/vue-router@2509",
"vue-tsc": "3.2.4"
}
}