mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 00:26:24 +00:00
19 lines
392 B
JSON
19 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"
|
|
}
|
|
}
|