-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "jameshfisher.com",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "bun run dev.ts",
"build": "bun run build.ts",
"tsc": "tsc --noEmit",
"check-links": "hyperlink --recursive --internal --root _site --canonicalroot https://jameshfisher.com _site/index.html",
"test": "bun run tsc",
"format": "prettier --write \"./**/*.11ty.js\"",
"add-hn-backlinks": "bun run scripts/addHnBacklinks.ts",
"add-summaries": "bun run scripts/addSummaries.ts",
"add-tags": "bun run scripts/addTags.ts"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.19.0",
"@types/browser-sync": "^2.29.0",
"@types/bun": "latest",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.11.30",
"@types/prismjs": "^1.26.3",
"browser-sync": "^3.0.2",
"bun": "^1.1.2",
"date-fns": "^3.6.0",
"gray-matter": "^4.0.3",
"html-entities": "^1.4.0",
"hyperlink": "^5.0.4",
"liquidjs": "^10.10.2",
"markdown-it": "^14.1.0",
"prettier": "^3.2.5",
"prismjs": "^1.29.0",
"striptags": "^3.2.0",
"typescript": "^5.0.0"
},
"dependencies": {
"linkedom": "^0.16.11",
"zod": "^3.22.4"
}
}