Files
2026-01-11 00:21:33 +01:00

20 lines
532 B
JSON

{
"devDependencies": {
"@types/d3": "^7.4.3",
"esbuild": "^0.27.2",
"typescript": "^5.9.3"
},
"scripts": {
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"vscode:prepublish": "npm run package",
"package": "npm run check-types && node esbuild.js --production"
},
"dependencies": {
"d3": "^7.9.0"
}
}