-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.15 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
{
"name": "@chbrain/website",
"private": true,
"version": "0.0.5",
"description": "kaihacks website - the rendered surface for the architecture spec.",
"repository": {
"type": "git",
"url": "git+https://github.com/chbrain/website.git"
},
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"prebuild": "node scripts/build-downloads.mjs",
"build": "astro build",
"postbuild": "node scripts/copy-public-to-surfaces.mjs",
"preview": "astro preview",
"test": "npm run build && node scripts/khai-tests.mjs",
"test:watch": "vitest",
"smoke": "vitest run --config vitest.smoke.config.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"deps:sync": "node scripts/deps-sync.mjs",
"prepare": "husky && chmod +x .husky/pre-commit .husky/pre-push"
},
"dependencies": {
"@chbrain/khai-arch": "^0.1.20",
"@chbrain/khai-cultures": "^0.286.0",
"@chbrain/khai-engine-gender": "^0.1.7",
"@chbrain/khai-engine-language": "^0.1.4",
"@chbrain/khai-methods": "^0.0.6",
"@chbrain/khai-misfits": "^0.101.1",
"@chbrain/khai-plays": "^0.0.13",
"@chbrain/khai-plays-buechner": "^0.20.6",
"@chbrain/khai-plays-dickens": "^0.10.0",
"@chbrain/khai-plays-grimm": "^0.860.0",
"@chbrain/khai-plays-hcandersen": "^0.214.0",
"@chbrain/khai-plays-kleist": "^0.22.7",
"@chbrain/khai-writing": "^0.1.1",
"@fontsource-variable/newsreader": "^5.2.10",
"@fontsource-variable/source-serif-4": "^5.2.9",
"@fontsource/ibm-plex-mono": "^5.2.7"
},
"devDependencies": {
"@chbrain/khai-guard": "^0.1.15",
"@chbrain/khai-language": "^0.1.23",
"@chbrain/khai-pack": "^0.0.3",
"@chbrain/khai-skills": "^0.0.30",
"@types/jsdom": "^28.0.3",
"@types/markdown-it": "^14.1.2",
"astro": "^7.1.0",
"axe-core": "^4.12.1",
"husky": "^9.1.6",
"js-yaml": "^4.2.0",
"jsdom": "^29.1.1",
"markdown-it": "^14.3.0",
"prettier": "^3.9.5",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"overrides": {
"esbuild": "^0.28.1"
}
}