forked from isaurssaurav/hot-reload-extension-vite-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.15 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
{
"name": "hot-reload-extension-vite",
"version": "0.0.0-development",
"description": "Simple vite plugin to reload the chrome extension.",
"main": "dist/main.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/main.d.ts",
"require": "./dist/main.js",
"import": "./dist/main.mjs"
}
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"lint:check": "prettier . --check",
"lint:fix": "prettier . --write",
"semantic-release": "semantic-release"
},
"keywords": [
"vite",
"chrome extension",
"reload",
"plugin"
],
"author": "Saurav Maharjan",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.246",
"@types/node": "^20.6.4",
"@types/ws": "^8.5.5",
"chalk": "^5.3.0",
"npm": "^10.1.0",
"prettier": "^3.0.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"semantic-release": "^22.0.4"
},
"dependencies": {
"ws": "^8.14.2"
},
"release": {
"branches": ["main"]
},
"repository": {
"type": "git",
"url": "https://github.com/isaurssaurav/hot-reload-extension-vite.git"
}
}