mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-07 08:10:42 -04:00
9f691f3cd8
# Description of Changes We apparently have stale usage of `--project-path` in a ton of our templates. This was renamed to `module-path` a while ago, but it looks like that was only partially fixed in templates. # API and ABI breaking changes None # Expected complexity level and risk 1 # Testing I don't think it's _more_ broken 🤷 --------- Signed-off-by: Zeke Foppa <196249+bfops@users.noreply.github.com> Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
28 lines
939 B
JSON
28 lines
939 B
JSON
{
|
|
"name": "@clockworklabs/react-ts",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"generate": "cargo run -p gen-bindings -- --out-dir src/module_bindings --module-path spacetimedb && prettier --write src/module_bindings",
|
|
"spacetime:generate": "spacetime generate --lang typescript --out-dir src/module_bindings --module-path spacetimedb",
|
|
"spacetime:publish:local": "spacetime publish --module-path server --server local",
|
|
"spacetime:publish": "spacetime publish --module-path server --server maincloud"
|
|
},
|
|
"dependencies": {
|
|
"spacetimedb": "workspace:*",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.3.18",
|
|
"@types/react-dom": "^18.3.5",
|
|
"@vitejs/plugin-react": "^5.0.2",
|
|
"typescript": "~5.6.2",
|
|
"vite": "^7.1.5"
|
|
}
|
|
}
|