-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@re-entry.ai/cli",
"version": "0.6.0",
"description": "Command-line interface for re-entry.ai. AI code review + agent governance, in your terminal.",
"bin": {
"reentry": "./bin/reentry"
},
"files": [
"bin",
"README.md"
],
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=bin/reentry --banner:js='#!/usr/bin/env node' && chmod +x bin/reentry",
"typecheck": "tsc --noEmit",
"test": "jest",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run typecheck && npm test && npm run build"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"private": false,
"engines": {
"node": ">=18.18.0"
},
"dependencies": {
"@inquirer/input": "4.3.1",
"@inquirer/select": "4.4.2",
"clipboardy": "2.3.0",
"commander": "12.0.0",
"kleur": "4.1.5",
"ora": "5.4.1"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "18.19.18",
"esbuild": "0.25.12",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"typescript": "5.3.3"
}
}