-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.3 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"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",
"test:e2e": "pnpm exec playwright test",
"test:e2e:ui": "pnpm exec playwright test --ui",
"test:ci": "vitest run && pnpm run test:e2e"
},
"lint-staged": {
"src/**/*": "pnpm run fmt"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/markdown-remark": "^6.3.11",
"@astrojs/mdx": "^4.3.14",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/svelte": "^7.2.5",
"@catppuccin/catppuccin": "github:catppuccin/catppuccin#7e4506607b8a6c298ce0876e385c52281e879245",
"@catppuccin/palette": "^1.8.0",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/simple-icons": "^1.2.76",
"@iconify/svelte": "^5.2.1",
"@iconify/tools": "^5.0.0",
"@iconify/types": "^2.0.0",
"@playwright/test": "^1.59.1",
"@rollup/plugin-yaml": "^4.1.2",
"@types/node": "^24.12.2",
"@vitest/coverage-v8": "^3.2.4",
"astro": "^5.18.1",
"astro-expressive-code": "^0.41.7",
"astro-icon": "1.1.5",
"fuse.js": "^7.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"mdast-util-to-string": "^4.0.0",
"playwright": "^1.59.1",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"sass": "^1.99.0",
"sharp": "^0.34.5",
"surge": "^0.24.7",
"svelte": "^5.55.1",
"svelte-intersection-observer-action": "^0.0.5",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitest": "^3.2.4",
"yaml": "^2.8.3"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"sharp"
]
}
}