-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 1.09 KB
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 1.09 KB
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
{
"name": "@extension/hmr",
"version": "0.5.1569",
"description": "chrome extension - hot module reload/refresh",
"type": "module",
"private": true,
"sideEffects": true,
"files": [
"dist/**"
],
"types": "index.mts",
"main": "dist/index.mjs",
"scripts": {
"clean:bundle": "rimraf dist && pnpx rimraf build",
"clean:node_modules": "pnpx rimraf node_modules",
"clean:turbo": "rimraf .turbo",
"clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
"ready": "tsc -b && rollup --config dist/rollup.config.js",
"dev": "tsx lib/initializers/init-reload-server.ts",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"format": "prettier . --write --ignore-path ../../.prettierignore",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@extension/env": "workspace:*",
"@extension/tsconfig": "workspace:*",
"@rollup/plugin-sucrase": "^5.0.2",
"@types/ws": "^8.18.1",
"esbuild": "^0.25.4",
"esm": "^3.2.25",
"fast-glob": "^3.3.3",
"rollup": "^4.45.1",
"ts-node": "^10.9.2",
"ws": "^8.18.2"
}
}