-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·33 lines (33 loc) · 933 Bytes
/
package.json
File metadata and controls
executable file
·33 lines (33 loc) · 933 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
26
27
28
29
30
31
32
33
{
"name": "@extension/content-runtime-script",
"version": "0.5.1565",
"description": "chrome extension - content runtime script",
"type": "module",
"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": "tsx build.mts",
"dev": "tsx build.mts",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"format": "prettier . --write --ignore-path ../../.prettierignore",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@extension/env": "workspace:*",
"@extension/ui": "workspace:*"
},
"devDependencies": {
"@extension/tsconfig": "workspace:*",
"@extension/vite-config": "workspace:*",
"@extension/hmr": "workspace:*",
"@extension/shared": "workspace:*",
"tsx": "^4.16.2"
}
}