-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
101 lines (101 loc) · 2.34 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@samrum/vite-plugin-web-extension",
"version": "5.1.1",
"description": "A vite plugin for generating cross browser platform, ES module based web extensions",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./types/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./client": {
"types": "./client.d.ts",
"import": "./client.mjs",
"require": "./client.mjs"
}
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"files": [
"client.mjs",
"client.d.ts",
"dist",
"README.md",
"types"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "prettier --write --loglevel warn .",
"lint:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest run",
"prepare": "husky install",
"prepublishOnly": "pnpm run build",
"release": "standard-version --sign"
},
"standard-version": {
"scripts": {
"prerelease": "pnpm test:run && pnpm build"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/samrum/vite-plugin-web-extension.git"
},
"keywords": [
"vite",
"vite-plugin",
"web",
"extension",
"browser",
"chrome",
"firefox",
"edge",
"manifest",
"manifest V2",
"manifest V3"
],
"author": "Ruben Medina",
"license": "MIT",
"bugs": {
"url": "https://github.com/samrum/vite-plugin-web-extension/issues"
},
"homepage": "https://github.com/samrum/vite-plugin-web-extension#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "2.8.8",
"rollup": "^4.8.0",
"sass": "^1.69.5",
"standard-version": "^9.5.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^2.1.1"
},
"peerDependencies": {
"vite": "^4.0.3 || ^5.0.0"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
]
},
"dependencies": {
"@types/chrome": "^0.0.233",
"@types/etag": "^1.8.3",
"content-security-policy-parser": "^0.4.1",
"etag": "^1.8.1",
"fs-extra": "^11.2.0",
"magic-string": "^0.30.5",
"vite": "^5.0.7"
}
}