-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 1.22 KB
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.22 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
38
39
40
{
"name": "chrome-extension",
"version": "0.5.1565",
"description": "chrome extension - core settings",
"type": "module",
"private": true,
"sideEffects": false,
"scripts": {
"clean:node_modules": "pnpx rimraf node_modules",
"clean:turbo": "rimraf .turbo",
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
"ready": "tsc -b pre-build.tsconfig.json",
"build": "vite build",
"dev": "vite build --mode development",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"prettier": "prettier . --write --ignore-path ../.prettierignore",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@extension/env": "workspace:*",
"@extension/shared": "workspace:*",
"@extension/storage": "workspace:*",
"idb": "^8.0.3",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@types/node": "*",
"@types/chrome": "*",
"@extension/dev-utils": "workspace:*",
"@extension/hmr": "workspace:*",
"@extension/tsconfig": "workspace:*",
"@extension/vite-config": "workspace:*",
"@laynezh/vite-plugin-lib-assets": "^1.1.0",
"magic-string": "^0.30.17",
"ts-loader": "^9.5.2",
"vite-plugin-node-polyfills": "^0.22.0"
}
}