-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.22 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
66
67
68
69
{
"name": "idb-crud",
"description": "An open-source Chrome extension for managing various types of browser storage and databases with an intuitive interface",
"private": true,
"version": "2.3.0",
"type": "module",
"license": "GPL-3.0-only",
"homepage": "https://github.com/haroonwaves/idb-crud",
"author": "Usman Haroon <haroonusman00@gmail.com> (https://haroonwaves.github.io)",
"scripts": {
"dev": "wxt",
"build": "wxt build",
"zip": "wxt zip",
"postinstall": "wxt prepare",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"typecheck": "tsc --noEmit",
"validate": "npm run typecheck && eslint . && prettier --check \"src/**/*.{ts,tsx,css}\"",
"prepare": "husky install"
},
"dependencies": {
"@preact/signals": "^1.2.3",
"@radix-ui/react-checkbox": "^1.2.2",
"@radix-ui/react-dialog": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-select": "^2.2.2",
"@radix-ui/react-slot": "^1.2.0",
"@tanstack/react-table": "^8.21.2",
"@types/streamsaver": "^2.0.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dexie": "^3.2.5",
"lucide-react": "^0.487.0",
"oboe": "^2.1.7",
"preact": "^10.5.15",
"react-json-view": "^1.21.3",
"react-resizable-panels": "^2.0.8",
"streamsaver": "^2.0.6",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@cspell/eslint-plugin": "^8.18.1",
"@preact/preset-vite": "^2.10.1",
"@tailwindcss/postcss": "^4.1.3",
"@types/chrome": "^0.0.315",
"@types/node": "^22.14.1",
"@types/oboe": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-preact": "^0.1.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-sonarjs": "^3.0.2",
"eslint-plugin-unicorn": "^58.0.0",
"husky": "^8.0.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.1.3",
"terser": "^5.43.1",
"typescript": "^5.8.3",
"wxt": "^0.20.7"
}
}