Files
SpacetimeDB/docs/package.json
T
Zeke Foppa adbfe3b0bd Tidy up CLI reference generation flow (#3226)
# Description of Changes

Some minor cleanups in the flow for regenerating the CLI reference.

# API and ABI breaking changes

None

# Expected complexity level and risk

1

# Testing

- [x] Existing CI passes

Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
2025-09-04 20:08:24 +00:00

29 lines
930 B
JSON

{
"name": "spacetime-docs",
"version": "1.0.0",
"description": "This repository contains the markdown files which are used to display documentation on our [website](https://spacetimedb.com/docs).",
"main": "index.js",
"dependencies": {
"github-slugger": "^2.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"prettier": "^3.3.3",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"scripts": {
"build": "tsc --project ./tsconfig.json && pnpm fix-markdown && prettier --write docs/nav.js",
"fix-markdown": "scripts/markdown-fix.mjs docs/cli-reference.md",
"format": "pnpm fix-markdown && prettier --write .",
"lint": "prettier . --check --verbose",
"check-links": "tsx scripts/checkLinks.ts"
},
"author": "Clockwork Labs",
"license": "ISC"
}