mirror of
https://github.com/DavidVentura/cam-reverse
synced 2026-08-10 12:58:22 -04:00
23 lines
527 B
JSON
23 lines
527 B
JSON
{
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "mocha tests",
|
|
"tsc": "tsc",
|
|
"build": "esbuild cmd/bin.ts --bundle --platform=node --outfile=dist/bin.cjs --target=node12 --loader:.gz=binary --loader:.html=text"
|
|
},
|
|
"devDependencies": {
|
|
"@types/yargs": "^17.0.32",
|
|
"esbuild": "^0.20.2",
|
|
"mocha": "^10.2.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"dependencies": {
|
|
"winston": "^3.13.0",
|
|
"yaml": "^2.4.2",
|
|
"yargs": "^17.7.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0"
|
|
}
|
|
}
|