initial commit

This commit is contained in:
zhangshun
2026-05-23 09:11:46 +08:00
commit 5d08480921
42 changed files with 10615 additions and 0 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "dmt-model-library",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev -w server\" \"npm run dev -w web\"",
"build": "npm run build -w server && npm run build -w web",
"start": "npm run start -w server"
},
"workspaces": [
"server",
"web"
],
"devDependencies": {
"concurrently": "^9.1.2"
}
}