-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·28 lines (28 loc) · 743 Bytes
/
package.json
File metadata and controls
executable file
·28 lines (28 loc) · 743 Bytes
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
{
"name": "@extension/vite-config",
"version": "0.5.1573",
"description": "chrome extension - vite base configuration",
"type": "module",
"private": true,
"sideEffects": true,
"main": "dist/index.mjs",
"exports": {
".": "./dist/index.mjs"
},
"scripts": {
"clean:node_modules": "pnpx rimraf node_modules",
"clean:bundle": "pnpx rimraf dist",
"clean": "pnpm clean:bundle && pnpm clean:node_modules",
"ready": "tsc -b"
},
"dependencies": {
"@extension/env": "workspace:*",
"@vitejs/plugin-react-swc": "^4.1.0",
"deepmerge": "^4.3.1",
"vite-plugin-node-polyfills": "^0.22.0"
},
"devDependencies": {
"@extension/hmr": "workspace:*",
"@extension/tsconfig": "workspace:*"
}
}