-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1 KB
/
package.json
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
{
"name": "animeko-website",
"type": "module",
"version": "0.1.0",
"packageManager": "[email protected]",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"code:check": "eslint .",
"code:lint": "eslint . --fix --ignore-pattern dist",
"astro": "astro",
"postinstall": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/starlight": "^0.31.1",
"@astrojs/tailwind": "^5.1.5",
"@astrojs/vue": "^5.0.6",
"@headlessui/vue": "^1.7.23",
"@types/node": "^22.13.1",
"astro": "^5.2.5",
"danmaku": "^2.0.8",
"octokit": "^4.1.1",
"tailwindcss": "^4.0.5",
"typescript": "^5.7.3",
"vue": "^3.5.13"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.1",
"@iconify/vue": "^4.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3"
},
"lint-staged": {
"*.vue": "eslint --fix",
"*.astro": "astro check"
}
}