forked from qixing-jk/all-api-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.17 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 4.17 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "all-api-hub",
"displayName": "中转站管理器 - All API Hub",
"private": true,
"type": "module",
"version": "3.4.0",
"description": "一站式聚合管理所有AI中转站账号的余额、模型和密钥,告别繁琐登录。",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"dev:mobile:firefox": "node scripts/android-dev.js",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"build:all": "pnpm run build && pnpm run build:firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"zip:all": "pnpm run zip && pnpm run zip:firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest --run",
"test:watch": "vitest --watch",
"test:ci": "vitest --run --coverage",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,scss}": [
"prettier --write"
]
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.8",
"@ai-sdk/google": "^3.0.6",
"@ai-sdk/openai": "^3.0.7",
"@ai-sdk/openai-compatible": "^2.0.4",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@headlessui/react": "^2.2.4",
"@heroicons/react": "^2.2.0",
"@lobehub/icons": "^2.38.0",
"@plasmohq/storage": "^1.15.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-table": "^8.21.3",
"ai": "^6.0.16",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^0.2.1",
"dayjs": "^1.11.13",
"framer-motion": "^12.23.24",
"i18next": "^25.6.0",
"i18next-browser-languagedetector": "^8.2.0",
"lodash-es": "^4.17.21",
"lucide-react": "^0.546.0",
"postcss": "^8.5.6",
"react": "^19.1.1",
"react-countup": "^6.5.3",
"react-dom": "^19.1.1",
"react-hot-toast": "^2.5.2",
"react-i18next": "^16.0.1",
"react-tooltip": "^5.30.0",
"react-virtuoso": "^4.7.10",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.17",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "0.0.258",
"@types/firefox-webext-browser": "^120.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "20.11.5",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@types/webextension-polyfill": "^0.12.4",
"@typescript-eslint/parser": "^8.48.1",
"@vitest/coverage-v8": "^4.0.3",
"@wxt-dev/auto-icons": "^1.1.0",
"@wxt-dev/module-react": "^1.1.3",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.4.1",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jsdom": "^27.0.1",
"lint-staged": "^16.2.6",
"msw": "^2.11.6",
"prettier": "3.2.4",
"prettier-plugin-tailwindcss": "^0.7.1",
"react-devtools": "^7.0.1",
"shadcn": "^3.6.3",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"vitest": "^4.0.3",
"web-ext": "^9.0.0",
"webextension-polyfill": "^0.12.0",
"whatwg-fetch": "^3.6.20",
"wxt": "^0.20.11"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron"
]
}
}