-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.02 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
{
"name": "zany-zenith",
"version": "4.2.0",
"packageManager": "pnpm@10.28.0",
"scripts": {
"dev": "astro dev --host",
"start": "astro dev",
"build": "astro check && astro build && jampack ./dist",
"postbuild": "node -e \"require('node:fs').copyFileSync('.nojekyll', 'dist/.nojekyll')\"",
"predeploy": "pnpm build",
"preview": "astro preview",
"sync": "astro sync",
"astro": "astro",
"format:check": "prettier --check . --plugin=prettier-plugin-astro",
"format": "prettier --write . --plugin=prettier-plugin-astro",
"check:content": "node scripts/check-content.mjs",
"cz": "cz",
"prepare": "husky install",
"lint": "eslint .",
"test": "vitest run",
"check:worker": "tsc --noEmit -p workers/comments-api/tsconfig.json && tsc --noEmit -p workers/digest-api/tsconfig.json && wrangler deploy --dry-run && wrangler deploy --dry-run --config workers/digest-api/wrangler.jsonc",
"comments:export": "node scripts/comments/export-annotations.mjs",
"comments:d1:import": "tsx scripts/comments/import-annotations-to-d1.ts",
"comments:d1:reconcile": "tsx scripts/comments/reconcile-annotations-d1.ts",
"digest": "node scripts/digest/generate.mjs",
"digest:dry": "node scripts/digest/generate.mjs --dry-run",
"digest:offline": "node scripts/digest/generate.mjs --offline"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/rss": "^4.0.2",
"@giscus/react": "^3.1.0",
"@resvg/resvg-js": "^2.6.0",
"astro": "^4.2.1",
"fast-xml-parser": "^4.5.1",
"framer-motion": "^11.18.2",
"fuse.js": "^7.0.0",
"github-slugger": "^2.0.0",
"howler": "^2.2.4",
"jose": "^6.2.7",
"lucide-react": "^1.28.0",
"openai": "^6.49.0",
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"satori": "^0.10.11",
"sharp": "^0.33.4",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@astrojs/react": "^3.0.9",
"@astrojs/sitemap": "^3.0.5",
"@astrojs/tailwind": "^5.1.0",
"@divriots/jampack": "^0.23.2",
"@tailwindcss/typography": "^0.5.10",
"@types/github-slugger": "^1.3.0",
"@types/hast": "^3.0.5",
"@types/howler": "^2.2.12",
"@types/react": "^18.2.48",
"@typescript-eslint/parser": "^6.19.0",
"astro-eslint-parser": "^0.16.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-plugin-astro": "^0.31.3",
"hast-util-to-text": "^4.0.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsx": "^4.23.1",
"unist-util-visit": "^5.1.0",
"vitest": "^3.2.4",
"wrangler": "^4.118.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"
]
}
}