-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 956 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 956 Bytes
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
{
"name": "ky-astro-starter",
"author": "Ky Decker <hi@ky.fyi> (https://ky.fyi/)",
"type": "module",
"version": "0.0.1",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check && biome check",
"check:fix": "astro check && biome check --write"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
},
"nano-staged": {
"*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,json,jsonc,css,astro}": [
"biome check --write"
]
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/sitemap": "^3.7.2",
"astro": "^6.1.8",
"nano-staged": "^1.0.2",
"simple-git-hooks": "^2.13.1",
"smartypants": "^0.2.2",
"typescript": "^5.9.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"sharp": "^0.34.5"
}
}