20 lines
488 B
JSON
20 lines
488 B
JSON
{
|
|
"name": "dgraph-compiler",
|
|
"version": "1.0.0",
|
|
"description": "Compile Obsidian discurce graphs into text-based artifacts",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build:once": "tsc",
|
|
"build:watch": "tsc -w",
|
|
"start": "node dist/index.js",
|
|
"start:debug": "nodemon --inspect=9229 --watch dist dist/index.js"
|
|
},
|
|
"author": "Chegele",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/node": "^20.5.8",
|
|
"nodemon": "^3.0.1",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|