node-cli-template/package.json

23 lines
467 B
JSON
Raw Permalink Normal View History

2026-02-15 17:38:53 +07:00
{
"name": "name-placeholder",
"version": "0.1.0",
"type": "module",
"bin": {
2026-02-20 23:55:59 +07:00
"name-placeholder": "./dist/index.mjs"
2026-02-15 17:38:53 +07:00
},
"dependencies": {
"@stricli/core": "^1.2.5",
2026-02-26 14:39:55 +07:00
"dax": "^0.45.0"
2026-02-15 17:38:53 +07:00
},
"devDependencies": {
2026-02-20 23:55:59 +07:00
"@biomejs/biome": "^2.4.3",
2026-02-15 17:38:53 +07:00
"@types/node": "^25.2.3",
2026-02-26 14:39:55 +07:00
"tsdown": "^0.20.3",
"typescript": "^5.9.3"
2026-02-15 17:38:53 +07:00
},
"scripts": {
2026-02-20 23:55:59 +07:00
"build": "npx tsdown src/index.ts --format esm --clean",
2026-02-25 17:20:13 +07:00
"check": "npx tsc --noEmit && npx @biomejs/biome check ."
2026-02-15 17:38:53 +07:00
}
}