-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.65 KB
/
package.json
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
70
71
72
73
74
75
76
{
"name": "uptab",
"displayName": "UpTab",
"version": "1.2.2",
"description": "What's UpTab?",
"author": "Arthur Geel <[email protected]>",
"scripts": {
"build:chrome": "BUILD_TARGET=chrome vite build",
"build:firefox": "BUILD_TARGET=firefox vite build",
"dev": "BUILD_TARGET=firefox nodemon",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"lint:firefox": "web-ext lint --source-dir dist/firefox --output json --pretty | grep -v 'Applying config file: ./package.json' > dist/firefox-lint-output.json",
"load:firefox": "web-ext run --source-dir dist/firefox",
"zip:firefox": "cd dist/firefox && zip -r firefox.zip . && mv firefox.zip ../firefox.zip && cd ../../",
"zip:chromium": "cd dist/chromium && zip -r chromium.zip . && mv chromium.zip ../chromium.zip && cd ../../",
"chrome:store": "bun dev/commands/chrome/main.ts",
"firefox:store": "bun dev/commands/firefox/main.ts"
},
"type": "module",
"dependencies": {
"@heroicons/react": "^2.1.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-switch": "^1.0.3",
"@sentry/browser": "^8.20.0",
"@tanstack/react-query": "^5.51.14",
"clsx": "^2.1.0",
"date-fns": "^3.6.0",
"deepmerge": "^4.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.50.1",
"react-markdown": "^9.0.1",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0",
"webextension-polyfill": "^0.12.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@tanstack/eslint-plugin-query": "^5.12.1",
"@types/inquirer": "^9.0.7",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.17",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.17",
"bun": "^1.1.20",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.14.2",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.14",
"jsonwebtoken": "^9.0.2",
"nodemon": "^3.1.4",
"postcss": "^8.4.40",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vitest": "^2.0.4",
"web-ext": "^8.2.0"
}
}