trailbase/examples/tutorial/scripts/package.json

27 lines
635 B
JSON
Raw Normal View History

{
"name": "examples_tutorial_scripts",
"version": "0.0.1",
"description": "",
"type": "module",
"scripts": {
"build": "tsc",
"format": "prettier -w src",
"read": "tsc && node dist/src/index.js",
"fill": "tsc && node dist/src/fill.js",
"check": "tsc --noEmit --skipLibCheck && eslint"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.6",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"quicktype": "^23.0.170",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"dependencies": {
2024-11-27 23:39:36 +00:00
"csv-parse": "^5.6.0",
"trailbase": "workspace:*"
}
}