-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.25 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
{
"name": "tabmaster-pro",
"version": "0.1.0",
"description": "TabMaster Pro - 专业的标签页管理大师,让您的浏览器标签页井然有序",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:zip": "npm run build && cd dist && zip -r ../tabmaster-pro.zip .",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint:check": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"format": "prettier --write src/",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"prepare": "husky install"
},
"dependencies": {
"@vueuse/core": "^10.11.1",
"pinia": "^2.1.7",
"vue": "^3.4.0",
"vue-i18n": "^9.14.5"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.21",
"@types/chrome": "^0.0.253",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@unocss/eslint-plugin": "^0.58.0",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"unocss": "^0.58.0",
"vite": "^5.0.10",
"vitest": "^1.1.0",
"vue-tsc": "^1.8.27"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,less,html,json,md}": [
"prettier --write"
]
},
"keywords": [
"chrome-extension",
"tab-management",
"tabmaster",
"tab-organizer",
"browser-productivity",
"vue3",
"typescript",
"vite",
"manifest-v3"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/icatw/TabMaster-Pro.git"
},
"bugs": {
"url": "https://github.com/icatw/TabMaster-Pro/issues"
},
"homepage": "https://github.com/icatw/TabMaster-Pro#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}