Files
trailbase/examples/tutorial/scripts/package.json
2024-12-11 22:05:40 +01:00

27 lines
635 B
JSON

{
"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.16.0",
"@types/node": "^22.10.2",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"quicktype": "^23.0.170",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"dependencies": {
"csv-parse": "^5.6.0",
"trailbase": "workspace:*"
}
}