-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
36 lines (36 loc) · 947 Bytes
/
package.json
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
{
"name": "simple-extension-v2",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"watch": "vite build --watch --mode development",
"build": "vite build",
"preview": "vite preview",
"create_languages": "ts-node-esm languages.ts"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.10",
"element-plus": "^2.2.25",
"lodash-es": "^4.17.21",
"vue": "^3.2.41",
"vuex": "^4.1.0"
},
"devDependencies": {
"@types/chrome": "^0.0.270",
"@types/lodash-es": "^4.17.6",
"@types/node": "^22.3.0",
"@vitejs/plugin-legacy": "^5.4.2",
"@vitejs/plugin-vue": "^5.1.2",
"terser": "^5.15.1",
"ts-node": "^10.9.1",
"typescript": "^5.5.4",
"unplugin-auto-import": "^0.18.2",
"unplugin-icons": "^0.19.2",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.1",
"vite-plugin-crx-mv3": "^0.1.7",
"vue-tsc": "^2.0.29"
}
}