This commit is contained in:
team3
2026-05-23 00:42:25 +02:00
commit a1b1b2d11c
18 changed files with 2563 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "contexter",
"version": "0.1.0",
"description": "Obsidian Plugin - Grid + unabhängiger Graph für Projekte",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production"
},
"keywords": [],
"author": "marha",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.0",
"builtin-modules": "^3.3.0",
"esbuild": "0.20.2",
"obsidian": "^1.5.7",
"tslib": "2.6.2",
"typescript": "5.4.5"
},
"dependencies": {
"@types/cytoscape": "^3.21.9",
"cytoscape": "^3.33.4"
}
}