Files
SpacetimeDB/docs/package.json
T
Tyler Cloutier 5420d146f0 Small change to auth docs (#3329)
# Description of Changes

Minor docs change

# API and ABI breaking changes

None

# Expected complexity level and risk

1

# Testing

None, trivial change
2025-10-02 13:53:16 +00:00

29 lines
1003 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.build.json && pnpm fix-markdown && prettier --write docs/nav.js",
"fix-markdown": "node scripts/markdown-fix.mjs docs/cli-reference.md",
"format": "pnpm fix-markdown && prettier . --write --ignore-path .prettierignore",
"lint": "eslint . && prettier . --check --ignore-path .prettierignore",
"check-links": "tsx scripts/checkLinks.ts"
},
"author": "Clockwork Labs",
"license": "ISC"
}