forked from Jervis2049/vite-plugin-crx-mv3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "vite-plugin-crx-mv3",
"version": "0.1.6",
"description": "Build a Chrome Extension with Vite.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"dev": "pnpm run build --watch",
"build": "tsup",
"example:dev": "nodemon --config nodemon.json",
"prepare": "husky install",
"format": "prettier --write --cache .",
"lint-staged": "lint-staged",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"keywords": [
"rollup",
"vite",
"Manifest V3",
"vite plugin",
"Chrome Extension"
],
"author": "Jervis",
"license": "MIT",
"repository": {
"url": "https://github.com/Jervis2049/vite-plugin-crx-mv3.git"
},
"dependencies": {
"acorn": "^8.10.0",
"rollup": "^3.2.2",
"ws": "^8.9.0"
},
"devDependencies": {
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"sass": "^1.56.1",
"tsup": "^6.2.2",
"typescript": "^4.7.4",
"vite": "^3.0.9"
},
"lint-staged": {
"*.{ts,js}": "eslint --fix"
},
"files": [
"dist",
"README.md"
]
}