-
-
Notifications
You must be signed in to change notification settings - Fork 386
/
package.json
29 lines (29 loc) · 830 Bytes
/
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
{
"name": "@extension/devtools",
"version": "0.3.5",
"description": "chrome extension - devtools",
"private": true,
"sideEffects": true,
"files": [
"dist/**"
],
"scripts": {
"clean:node_modules": "pnpx rimraf node_modules",
"clean:turbo": "rimraf .turbo",
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
"build": "vite build",
"dev": "cross-env __DEV__=true vite build --mode development",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "pnpm lint --fix",
"prettier": "prettier . --write --ignore-path ../../.prettierignore",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@extension/shared": "workspace:*"
},
"devDependencies": {
"@extension/tsconfig": "workspace:*",
"@extension/vite-config": "workspace:*",
"cross-env": "^7.0.3"
}
}