-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.09 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
{
"name": "soul-atlas",
"version": "0.1.0",
"description": "The open, community-maintained collection of SOUL.md files — capturing how experts think.",
"type": "module",
"license": "MIT",
"homepage": "https://soul-atlas.github.io",
"repository": {
"type": "git",
"url": "https://github.com/soul-atlas/soul-atlas.github.io.git"
},
"engines": {
"node": ">=18.17.1"
},
"scripts": {
"dev": "npm run generate && astro dev",
"start": "astro dev",
"build": "npm run generate && npm run og && astro build && npm run search:index",
"preview": "astro preview",
"astro": "astro",
"generate": "node scripts/generate.mjs",
"og": "node scripts/gen-og.mjs",
"validate": "node scripts/validate.mjs",
"audit": "node scripts/audit-depth.mjs",
"review:suggestion": "node scripts/review-suggestion.mjs",
"apply:suggestion": "node scripts/apply-suggestion.mjs",
"new": "node scripts/new-soul.mjs",
"ingest:souls-directory": "node scripts/ingest-souls-directory.mjs",
"stats": "node scripts/generate.mjs --stats-only",
"banner": "node scripts/gen-banner-gif.mjs",
"search:index": "pagefind --site dist",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . && markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#dist\"",
"lint:md": "markdownlint-cli2 \"souls/**/SOUL.md\"",
"check": "npm run validate && npm run lint && npm run format:check"
},
"dependencies": {
"@astrojs/rss": "^4.0.7",
"@astrojs/tailwind": "^5.1.2",
"astro": "^4.16.0",
"d3": "^7.9.0",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"marked": "^18.0.5",
"marked-gfm-heading-id": "^4.1.0",
"tailwindcss": "^3.4.13"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@types/d3": "^7.4.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.16.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^9.12.0",
"gifenc": "^1.0.3",
"markdownlint-cli2": "^0.14.0",
"pagefind": "^1.1.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1"
}
}