forked from xiao-zaiyi/illa-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.13 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.13 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
{
"name": "illa-helper",
"description": "manifest.json description",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip --mode production",
"zip:dev": "wxt zip --mode development",
"zip:firefox": "wxt zip -b firefox --mode production",
"zip:firefox:dev": "wxt zip -b firefox --mode development",
"zip:safari": "wxt zip -b safari --mode production",
"zip:safari:dev": "wxt zip -b safari --mode development",
"zip:all": "wxt zip -b chrome --mode production && wxt zip -b safari --mode production && wxt zip -b firefox --mode production",
"compile": "vue-tsc --noEmit",
"postinstall": "wxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{js,ts,jsx,tsx,vue}\" \"entrypoints/**/*.{js,ts,jsx,tsx,vue}\"",
"check": "npm run format && npm run lint:fix",
"prepare": "husky install"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@tailwindcss/vite": "^4.1.10",
"@tanstack/vue-table": "^8.21.3",
"@vueuse/core": "^13.4.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"lucide-vue-next": "^0.522.0",
"reka-ui": "^2.3.1",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.4",
"vue": "^3.5.13"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/chrome": "^0.0.326",
"@types/webextension-polyfill": "^0.12.3",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@wxt-dev/module-vue": "^1.0.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"eslint-plugin-vue": "^10.2.0",
"globals": "^16.2.0",
"husky": "^9.1.7",
"prettier": "3.5.3",
"tailwindcss": "^4.1.10",
"typescript": "5.6.3",
"typescript-eslint": "^8.34.1",
"vite-plugin-remove-console": "^2.2.0",
"vue-tsc": "^2.2.10",
"wxt": "^0.20.6"
}
}