Initial Commit

This commit is contained in:
kossLAN 2026-06-06 23:08:48 -04:00
commit 0534f88f70
No known key found for this signature in database
14 changed files with 5590 additions and 0 deletions

24
package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "wry-docs",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.5.2",
"scripts": {
"dev": "pnpm run sync:specs && astro dev",
"sync:specs": "node scripts/sync-specs.mjs",
"build": "pnpm run sync:specs && astro build",
"check": "pnpm run sync:specs && astro check",
"release:pack": "node scripts/pack-release.mjs"
},
"dependencies": {
"@astrojs/starlight": "^0.39.3",
"astro": "^6.4.4"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"tar": "^7.5.16",
"typescript": "^6.0.3",
"yazl": "^3.3.1"
}
}