Files
dsa/package.json
T
naomi 1f44f2ddd9
Node.js CI / Lint and Test (push) Successful in 37s
feat: initial repo scaffolding
Port in some older solutions I've written just to
get the structure established and in place.
2025-11-19 15:35:26 -08:00

28 lines
630 B
JSON

{
"name": "dsa",
"version": "1.0.0",
"description": "",
"main": "prod/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "tsx src/index.ts",
"lint": "eslint src --max-warnings 0",
"test": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.22.0",
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/node": "24.10.1",
"@vitest/coverage-v8": "4.0.10",
"eslint": "9.39.1",
"tsx": "4.20.6",
"typescript": "5.9.3",
"vitest": "4.0.10"
}
}