heatmap_gen/package.json
2025-10-11 22:57:53 +05:30

22 lines
494 B
JSON

{
"name": "canvas-hello-world",
"version": "1.0.0",
"description": "A Hello World app using Canvas and TypeScript",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"watch": "tsc --watch"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"canvas": "^3.2.0",
"cli-progress": "^3.12.0"
}
}