-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.77 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.77 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
54
55
56
57
58
59
{
"name": "sync-storage",
"version": "2.1.0",
"description": "A Chrome Extension for syncing storage across tabs, support LocalStorage,SessionStorage,Cookie",
"license": "MIT",
"author": {
"name": "twotwoba",
"email": "ericyuanovo@gmail.com"
},
"type": "module",
"scripts": {
"dev": "concurrently \"npm run css\" \"vite build --watch --mode development\"",
"build": "npm run css:build && vite build --mode production",
"css": "npx @tailwindcss/cli -i src/assets/css/tailwind.css -o src/assets/css/output.css --minify --watch",
"css:build": "npx @tailwindcss/cli -i src/assets/css/tailwind.css -o src/assets/css/output.css --minify",
"preview": "vite preview",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --write .",
"format:check": "oxfmt --check ."
},
"dependencies": {
"@heroui/button": "^2.2.26",
"@heroui/input": "^2.4.27",
"@heroui/react": "^2.8.4",
"@heroui/system": "^2.4.22",
"@heroui/theme": "^2.4.22",
"@tailwindcss/vite": "^4.1.4",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.12",
"motion": "^12.8.0",
"ogl": "^1.0.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4.1.4"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.3",
"@tailwindcss/cli": "^4.1.11",
"@types/chrome": "^0.1.1",
"@types/node": "^22.14.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react-swc": "^3.9.0",
"concurrently": "^9.2.0",
"globals": "^16.0.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"tw-animate-css": "^1.2.8",
"typescript": "~5.7.2",
"vite": "^7.0.6",
"vite-plugin-zip-pack": "^1.2.4",
"vite-tsconfig-paths": "^5.1.4"
}
}