Initial commit

This commit is contained in:
2026-04-08 11:55:27 +01:00
commit 470a1c15b8
36 changed files with 4932 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "obsidian-sync",
"private": true,
"version": "0.1.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "tsc -b tsconfig.json",
"test": "tsx --test tests/**/*.test.ts",
"typecheck": "tsc -b tsconfig.json --pretty false",
"dev:server": "npm run dev --workspace @obsidian-sync/sync-server"
},
"devDependencies": {
"@types/node": "^22.14.1",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}