mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-06 07:26:43 -04:00
adbfe3b0bd
# 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>
29 lines
930 B
JSON
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"
|
|
}
|