-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.15 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": "astro-guild42",
"version": "1.3.0",
"type": "module",
"private": false,
"author": "Andreas Schlapbach <schlpbch@gmail.com>",
"description": "The official website of Guild42",
"repository": {
"type": "git",
"url": "https://github.com/schlpbch/astro-guild42"
},
"engines": {
"node": "25.x"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && jampack ./dist",
"preview": "astro preview",
"sync": "astro sync",
"astro": "astro",
"format:check": "prettier --check . --plugin=prettier-plugin-astro",
"format": "prettier --write . --plugin=prettier-plugin-astro",
"cz": "cz",
"prepare": "husky",
"test": "playwright test",
"lint": "eslint .",
"deploy": "pnpx netlify deploy --prod"
},
"dependencies": {
"@astrojs/check": "^0.9.10",
"@astrojs/rss": "^4.0.19",
"@nanostores/preact": "^1.1.0",
"@resvg/resvg-js": "^2.6.2",
"astro": "^6.4.8",
"fuse.js": "^7.5.0",
"github-slugger": "^2.0.0",
"nanostores": "^1.4.2",
"pdfjs-dist": "^5.7.284",
"preact": "^10.29.8",
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"satori": "^0.26.0"
},
"devDependencies": {
"@astrojs/preact": "^5.1.5",
"@astrojs/sitemap": "^3.7.3",
"@divriots/jampack": "^0.34.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"astro-eslint-parser": "^1.4.0",
"commitizen": "^4.3.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^10.8.0",
"eslint-plugin-astro": "^1.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"netlify": "^26.2.0",
"prettier": "^3.9.6",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"sharp": "^0.34.5",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@10.22.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx,json,astro}": [
"prettier --write --plugin=prettier-plugin-astro"
]
}
}