-
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) · 907 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 907 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
38
39
40
41
{
"name": "stream-visualizer",
"private": true,
"version": "0.0.1",
"type": "module",
"author": "Li Wakin",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks"
},
"engines": {
"node": ">=20.11.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"vue": "^3.4.19"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.18",
"lint-staged": "^15.2.2",
"postcss": "^8.4.36",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.12",
"simple-git-hooks": "^2.11.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vue-tsc": "^2.0.6"
}
}