-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 944 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 944 Bytes
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
{
"name": "fastunduh",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"lint:eslint": "eslint . --fix --cache",
"lint": "run-s lint:*"
},
"dependencies": {
"vue": "^3.5.25"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.11",
"@vitejs/plugin-vue": "^6.0.2",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.1",
"eslint-plugin-oxlint": "~1.29.0",
"eslint-plugin-vue": "~10.5.1",
"globals": "^16.5.0",
"npm-run-all2": "^8.0.4",
"oxlint": "~1.29.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"vite": "^7.2.4",
"vite-plugin-vue-devtools": "^8.0.5"
}
}