Skyler Grey
a1e9459a60
We're setting this up as an astro+bun project, and we're using a flake to let us install bun with direnv. We also added .gitmodules to pull in our wiki content
33 lines
725 B
JSON
33 lines
725 B
JSON
{
|
|
"name": "docs-site",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"start": "astro dev",
|
|
"build": "astro check && astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro",
|
|
"test": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/check": "^0.6.0",
|
|
"astro": "^4.8.2",
|
|
"rehype-raw": "^7.0.0",
|
|
"rehype-sanitize": "^6.0.0",
|
|
"rehype-stringify": "^10.0.0",
|
|
"remark-parse": "^11.0.0",
|
|
"remark-rehype": "^11.1.0",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"@total-typescript/ts-reset": "^0.5.1",
|
|
"@types/bun": "latest",
|
|
"vitest": "^1.6.0"
|
|
},
|
|
"module": "index.ts",
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|