-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.41 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.41 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
{
"name": "6pack.care",
"type": "module",
"private": true,
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@types/bun": "latest",
"html-minifier": "^4.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1"
},
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"dev": "eleventy --serve",
"build": "eleventy",
"lint": "prettier --check . && bun run pangu-format.mjs --check",
"format": "prettier --write . && bun run pangu-format.mjs",
"prepare": "husky",
"check-links": "bun run check-links.mjs",
"en": "cat index.md manifesto.md 1.md 2.md 3.md 4.md 5.md 6.md measures.md faq.md ai-alignment-cannot-be-top-down.md ai-crisis-diplomacy.md ai-democracy-podcast.md podcast.md doom-debate.md | pbcopy",
"tw": "cat tw-index.md tw-manifesto.md tw-1.md tw-2.md tw-3.md tw-4.md tw-5.md tw-6.md tw-measures.md tw-faq.md tw-ai-alignment-cannot-be-top-down.md tw-ai-crisis-diplomacy.md tw-ai-democracy-podcast.md tw-podcast.md tw-doom-debate.md | pbcopy"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.md": "bun run pangu-format.mjs"
},
"dependencies": {
"pangu": "^7.2.0",
"remark": "^15.0.1",
"remark-pangu": "^2.2.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0"
}
}