nix-config/templates/node/package.json
2023-09-20 09:09:16 -04:00

20 lines
392 B
JSON

{
"name": "foo-bar",
"version": "0.1.0",
"description": "Foo-bar node program",
"bin": {
"foo-bar": "build/index.js"
},
"scripts": {
"build": "tsc",
"start": "npm run build && node build/index.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.1.2",
"typescript": "^5.0.4",
"typescript-language-server": "^3.3.2"
}
}