-
-
Notifications
You must be signed in to change notification settings - Fork 402
/
package.json
35 lines (35 loc) · 1.11 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
{
"name": "chrome-extension",
"version": "0.3.5",
"description": "chrome extension - core settings",
"type": "module",
"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",
"test": "vitest run",
"lint": "eslint ./ --ext .ts,.js,.tsx,.jsx",
"lint:fix": "pnpm lint --fix",
"prettier": "prettier . --write --ignore-path ../.prettierignore",
"type-check": "tsc --noEmit"
},
"dependencies": {
"webextension-polyfill": "^0.12.0",
"@extension/shared": "workspace:*",
"@extension/storage": "workspace:*"
},
"devDependencies": {
"@extension/dev-utils": "workspace:*",
"@extension/hmr": "workspace:*",
"@extension/tsconfig": "workspace:*",
"@extension/vite-config": "workspace:*",
"@laynezh/vite-plugin-lib-assets": "^0.6.1",
"@types/ws": "^8.5.13",
"magic-string": "^0.30.10",
"ts-loader": "^9.5.1",
"deepmerge": "^4.3.1",
"cross-env": "^7.0.3"
}
}