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