-
-
Notifications
You must be signed in to change notification settings - Fork 309
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@extension/content-script",
"version": "0.4.2",
"description": "chrome extension - content script",
"type": "module",
"private": true,
"sideEffects": true,
"files": [
"dist/**"
],
"scripts": {
"clean:node_modules": "pnpm dlx rimraf node_modules",
"clean:turbo": "rimraf .turbo",
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
"build": "vite build",
"dev": "vite build --mode development",
"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:*",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"ajv": "^8.17.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fast-xml-parser": "^5.0.9",
"immer": "^10.1.1",
"lucide-react": "^0.477.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"shadcn-ui": "^0.9.5",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.5"
},
"devDependencies": {
"@extension/hmr": "workspace:*",
"@extension/tsconfig": "workspace:*",
"@extension/vite-config": "workspace:*",
"@types/chrome": "0.0.304",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/webextension-polyfill": "^0.12.3",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.2",
"tailwindcss": "^3.4.17"
}
}