trailbase/examples/data-cli-tutorial/package.json

28 lines
671 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": "node --loader ts-node/esm src/index.js",
"fill": "node --loader ts-node/esm src/fill.js",
"check": "tsc --noEmit --skipLibCheck && eslint"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
2026-01-15 20:58:33 +00:00
"@types/node": "^25.0.9",
"eslint": "^9.39.2",
2026-01-15 20:58:33 +00:00
"prettier": "^3.8.0",
2025-06-02 19:04:36 +00:00
"quicktype": "^23.2.6",
"ts-node": "^10.9.2",
2025-10-06 20:53:04 +00:00
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
},
"dependencies": {
2024-11-27 23:39:36 +00:00
"csv-parse": "^5.6.0",
2025-10-12 18:01:01 +00:00
"trailbase": "^0.8.0"
}
}