-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
executable file
·39 lines (39 loc) · 1.13 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
{
"name": "@extension/content-ui",
"version": "0.5.1565",
"description": "chrome extension - content ui",
"type": "module",
"private": true,
"sideEffects": true,
"files": [
"dist/**"
],
"scripts": {
"clean:bundle": "rimraf dist",
"clean:node_modules": "pnpx rimraf node_modules",
"clean:turbo": "rimraf .turbo",
"clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
"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/shared": "workspace:*",
"@extension/ui": "workspace:*",
"@extension/i18n": "workspace:*",
"@extension/env": "workspace:*"
},
"devDependencies": {
"@extension/hmr": "workspace:*",
"@extension/tailwindcss-config": "workspace:*",
"@extension/tsconfig": "workspace:*",
"@extension/vite-config": "workspace:*",
"tailwindcss": "^4.1.11",
"autoprefixer": "^10.4.21",
"@tailwindcss/postcss": "^4.1.11",
"tsx": "^4.20.3"
}
}