-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "awesome-alfred-skyblue",
"type": "module",
"version": "0.0.14",
"description": "code collection of 远方os(Alfred-Skyblue)",
"license": "MIT",
"homepage": "https://github.com/lonewolfyx/awesome-alfred-skyblue",
"repository": {
"type": "git",
"url": "git@github.com:lonewolfyx/awesome-alfred-skyblue.git"
},
"bugs": {
"url": "https://github.com/lonewolfyx/awesome-alfred-skyblue/issues"
},
"scripts": {
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"dependencies": {
"@vueuse/core": "^13.4.0",
"clsx": "^2.1.1",
"tailwind-merge": "^3.3.1",
"vitepress": "^1.6.3"
},
"devDependencies": {
"@antfu/eslint-config": "^4.15.0",
"@types/node": "^24.0.3",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.29.0",
"lint-staged": "^16.1.5",
"picocolors": "^1.1.1",
"postcss": "^8.5.6",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^3.4.17"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node scripts/verify-commit.js"
},
"lint-staged": {
"*": "eslint --fix"
}
}