-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.52 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.52 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
{
"name": "88code-cost",
"displayName": "88Code Cost",
"version": "1.0.4",
"description": "88Code Cost - 智能额度监控工具,实时追踪套餐使用情况并自动重置",
"author": "88Code Team",
"keywords": [
"88code",
"api",
"subscription",
"monitoring",
"usage",
"cost",
"browser-extension",
"chrome-extension"
],
"license": "MIT",
"scripts": {
"dev": "plasmo dev",
"dev:firefox": "plasmo dev --target=firefox-mv2",
"build": "plasmo build",
"build:chrome": "plasmo build --target=chrome-mv3",
"build:firefox": "plasmo build --target=firefox-mv2",
"build:edge": "plasmo build --target=edge-mv3",
"build:all": "npm run build:chrome && npm run build:firefox && npm run build:edge",
"package": "plasmo package",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@plasmohq/storage": "^1.15.0",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eruda": "^3.4.3",
"lucide-react": "^0.553.0",
"plasmo": "0.90.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^3.4.0",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/chrome": "^0.0.280",
"@types/node": "^22.10.5",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/webextension-polyfill": "^0.12.4",
"autoprefixer": "^10.4.22",
"baseline-browser-mapping": "^2.9.19",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.18",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.4",
"vitest": "^2.1.9"
},
"manifest": {
"host_permissions": [
"https://www.88code.ai/*"
],
"permissions": [
"storage",
"tabs",
"alarms"
]
},
"pnpm": {
"overrides": {
"msgpackr": ">=1.10.1",
"content-security-policy-parser": ">=0.6.0",
"esbuild": ">=0.25.0",
"svelte": ">=4.2.19",
"tsup": ">=8.3.5"
}
}
}