-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
53 lines (53 loc) · 1.59 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@gongfudev/website",
"description": "Website of Gōng-fu DEV, built with Astro, Shoelace and Lit",
"author": "Gōng-fu DEV (https://github.com/gongfudev)",
"license": "Apache-2.0",
"type": "module",
"version": "1.0.0",
"scripts": {
"clean": "del-cli .astro .vercel node_modules/.vite",
"format": "prettier \"src/**/*.{astro,js,html,css,mdx}\" --list-different --write",
"lint": "eslint \"src/**/*.{astro,js,ts}\"",
"migrate:fetch": "node scripts/fetch-repo-issues.js",
"migrate:convert": "node scripts/convert-to-md.js",
"dev": "astro dev --host",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview --host",
"astro": "astro",
"prepare": "husky"
},
"dependencies": {
"@astrojs/vercel": "^7.8.2",
"@shoelace-style/shoelace": "^2.18.0",
"@vercel/analytics": "^1.3.2",
"astro": "^4.16.9",
"lit": "^3.2.1"
},
"devDependencies": {
"@typescript-eslint/parser": "^7.10.0",
"del-cli": "^6.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-astro": "^0.33.1",
"husky": "^9.1.6",
"marked": "^12.0.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"vite-plugin-static-copy": "^2.0.0",
"yargs": "^17.7.2"
},
"publishConfig": {
"access": "restricted"
},
"homepage": "https://github.com/gongfudev/website#readme",
"bugs": {
"url": "https://github.com/gongfudev/website/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:gongfudev/website.git"
}
}