-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.79 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
60
61
62
63
64
65
{
"name": "Quick Cast",
"version": "0.0.3",
"description": "Chrome extension that allows you to quickly control your tabs, bookmarks and histories.",
"private": true,
"type": "module",
"scripts": {
"type-check": "tsc -b",
"clean": "rimraf dist",
"start": "npm run dev",
"dev": "node scripts/build.js --dev",
"build": "node scripts/build.js",
"lint": "eslint . && prettier . --check",
"lint:fix": "eslint --fix . && prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"**/*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"lucide-react": "^0.447.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/chrome": "^0.0.270",
"@types/node": "^22.5.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"chokidar": "^3.6.0",
"concurrently": "^9.0.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"fs-extra": "^11.2.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sass": "^1.78.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1"
}
}