Files
trailbase/examples/tutorial/scripts/package.json

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.15.0",
"@types/node": "^22.10.1",
"eslint": "^9.15.0",
"prettier": "^3.4.1",
"quicktype": "^23.0.170",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"dependencies": {
"csv-parse": "^5.6.0",
"trailbase": "workspace:*"
}
}