-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 KB
/
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
37
38
39
40
41
42
43
{
"name": "vitaly-extension",
"description": "A starter template for Chrome Extension (MV3) with Vite, Vue and Typescript",
"private": true,
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"start": "vite",
"build": "vue-tsc --noEmit && vite build",
"package": "npm run build && node build.js",
"test": "vitest",
"lint": "yarn run eslint --ext .js,.ts,.vue,.jsx src/",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss,md,vue}'"
},
"dependencies": {
"vue": "^3.3.4",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.12",
"@types/chrome": "^0.0.246",
"@types/jest": "^29.5.5",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@vitejs/plugin-vue": "^4.3.4",
"@vue/eslint-config-prettier": "^8.0.0",
"crx3": "^1.1.3",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"prettier": "^3.0.3",
"sass": "^1.67.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.4",
"vue-tsc": "^1.8.13"
},
"engines": {
"node": ">= 18.14.0",
"npm": ">= 8.11.0",
"yarn": ">= 1.22.0"
}
}