forked from cxro/astro-whono
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.11 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "astro-whono",
"version": "0.5.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cxro/astro-whono.git"
},
"bugs": {
"url": "https://github.com/cxro/astro-whono/issues"
},
"homepage": "https://astro.whono.me",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"dev:clean": "node ./scripts/clean-vite-cache.mjs && astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check && npm run check:admin-content-source-boundary",
"test": "vitest run --config ./vitest.config.ts",
"verify": "npm run check && npm run test && npm run build",
"ci": "npm run verify",
"ci:core": "npm run verify",
"audit:prod": "npm audit --omit=dev --audit-level=high --registry=https://registry.npmjs.org",
"check:markdown-smoke": "node ./scripts/check-markdown-smoke.mjs",
"check:admin-content-source-boundary": "node ./scripts/check-admin-content-source-boundary.mjs",
"check:admin-editor-emoji-boundary": "node ./scripts/check-admin-editor-emoji-boundary.mjs",
"check:prod-artifacts": "node ./scripts/check-production-artifacts.mjs",
"check:preview-admin": "node ./scripts/check-preview-admin-boundary.mjs",
"check:font-charset": "node ./scripts/font-charset.mjs --check",
"font:charset": "node ./scripts/font-charset.mjs",
"font:subset": "node ./scripts/font-subset.mjs",
"font:build": "npm run font:charset && npm run font:subset",
"new:bit": "node ./scripts/new-bit.mjs"
},
"dependencies": {
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.3",
"@lucide/astro": "^1.28.0",
"astro": "^7.1.6",
"github-slugger": "^2.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/markdown-remark": "^7.2.2",
"@astrojs/svelte": "^9.0.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.0",
"@iconify-json/logos": "^1.2.0",
"@iconify-json/simple-icons": "^1.2.0",
"@lezer/highlight": "^1.2.3",
"@lucide/svelte": "^1.8.0",
"@shikijs/rehype": "^4.0.2",
"@types/node": "^22.0.0",
"emoji-picker-element": "^1.29.1",
"emoji-picker-element-data": "^1.8.0",
"fflate": "^0.8.3",
"katex": "^0.16.47",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-directive": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-smartypants": "^3.0.2",
"svelte": "^5.55.5",
"typescript": "^5.9.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vitest": "^4.1.2"
},
"overrides": {
"ajv": "8.18.0",
"anymatch": {
"picomatch": "2.3.2"
},
"fast-xml-parser": "5.7.0",
"h3": "1.15.9",
"postcss": "8.5.25",
"rollup": "4.59.0",
"volar-service-yaml": "0.0.70",
"yaml": "2.8.3",
"yaml-language-server": "1.20.0"
}
}