This repository was archived by the owner on Feb 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.97 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.97 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@pensar/cli",
"version": "1.1.8",
"description": "Automatically fix security vulnerabilities.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"type": "module",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"bin": {
"pensar": "./dist/index.js"
},
"scripts": {
"dev": "babel src/cli/views/index.tsx -o src/cli/views/out.ts",
"build": "NODE_ENV=production babel src/cli/views/index.tsx -o src/cli/views/out.ts && NODE_ENV=production tsup src/index.ts --format cjs,esm --clean --minify --shims",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pensarai/pensar-local.git"
},
"author": "PensarAI, Inc.",
"license": "LGPL-2.1-only",
"bugs": {
"url": "https://github.com/pensarai/pensar-local/issues"
},
"homepage": "https://github.com/pensarai/pensar-local#readme",
"dependencies": {
"@inquirer/prompts": "^6.0.1",
"@octokit/action": "^7.0.0",
"@pensar/semgrep-node": "^1.1.13",
"ansi-colors": "^4.1.3",
"axios": "^1.7.7",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"diskusage": "^1.2.0",
"ini": "^5.0.0",
"ink": "^5.0.1",
"ink-divider": "^3.0.0",
"ink-spinner": "^5.0.0",
"js-tiktoken": "^1.0.14",
"nanoid": "^5.0.7",
"open": "^10.1.0",
"openai": "^4.56.1",
"react": "^18.3.1"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/cli-progress": "^3.11.6",
"@types/ini": "^4.1.1",
"@types/ink-divider": "^2.0.4",
"@types/node": "^22.5.0",
"@types/react": "^18.3.5",
"dotenv": "^16.4.5",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}