-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 749 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 749 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
{
"name": "lavender-new-tab",
"version": "2.1.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev:server": "bun server/main.ts",
"build": "vue-tsc && vite build",
"build:watch": "vite build --watch",
"preview": "vite preview"
},
"dependencies": {
"@types/chrome": "^0.0.269",
"core-js": "^3.37.1",
"date-fns": "3.6.0",
"pinia": "^2.2.0",
"vue": "^3.4.35"
},
"devDependencies": {
"@types/node": "^22.0.2",
"@vitejs/plugin-vue": "^5.1.2",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vue-tsc": "^2.0.29"
},
"prettier": {
"singleQuote": true,
"semi": false,
"tabWidth": 2,
"useTabs": true
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}