-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 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
54
55
56
57
58
59
60
61
62
63
{
"name": "website",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"astro": "astro",
"build": "pnpm run maintainers && pnpm run test:run && astro check && astro build",
"check": "astro check",
"dev": "astro dev",
"fmt": "prettier --plugin=prettier-plugin-astro . --write",
"icons": "pnpm tsx src/data/scripts/convertIconsToJson.ts",
"maintainers": "pnpm tsx src/data/scripts/fetchMaintainerAvatars.ts",
"prepare": "husky",
"preview": "astro preview",
"start": "astro dev",
"test": "vitest",
"test:run": "vitest run",
"test:cov": "vitest run --coverage"
},
"lint-staged": {
"src/**/*": "pnpm run fmt"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/markdown-remark": "^6.0.1",
"@astrojs/mdx": "^4.0.1",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/svelte": "^7.0.1",
"@catppuccin/palette": "^1.7.1",
"@iconify-json/ph": "^1.2.1",
"@iconify-json/simple-icons": "^1.2.14",
"@iconify/svelte": "^4.1.0",
"@iconify/tools": "^4.0.7",
"@iconify/types": "^2.0.0",
"@rollup/plugin-yaml": "^4.1.2",
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^3.0.0",
"astro": "^5.0.3",
"astro-expressive-code": "^0.38.3",
"astro-icon": "1.1.2",
"fuse.js": "^7.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"mdast-util-to-string": "^4.0.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"sass": "^1.82.0",
"sharp": "^0.33.5",
"svelte": "^5.9.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^3.0.0",
"yaml": "^2.6.1"
},
"packageManager": "pnpm@10.6.1",
"engines": {
"node": ">=22"
}
}