23 lines
525 B
JSON
23 lines
525 B
JSON
{
|
|
"name": "@cerebrus/cli",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"main": "src/scan.ts",
|
|
"exports": {
|
|
".": "./src/scan.ts"
|
|
},
|
|
"scripts": {
|
|
"start": "bun src/index.ts",
|
|
"build": "bun build src/index.ts --target bun --outdir dist",
|
|
"check-types": "tsc --noEmit",
|
|
"lint": "eslint ."
|
|
},
|
|
"devDependencies": {
|
|
"@cerebrus/eslint-config": "*",
|
|
"@cerebrus/typescript-config": "*",
|
|
"@types/node": "^24.13.2",
|
|
"eslint": "^10.5.0",
|
|
"typescript": "~6.0.2"
|
|
}
|
|
}
|