-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.36 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@opensec/secbot",
"version": "2.0.0-b2",
"description": "Secbot pure TypeScript security automation backend and CLI.",
"type": "commonjs",
"private": false,
"main": "server/dist/main.js",
"bin": {
"secbot": "npm-bin/secbot.js",
"secbot-server": "npm-bin/secbot-server.js",
"secbot-mcp": "npm-bin/secbot-mcp.js"
},
"files": [
"server/dist",
"terminal-ui/dist",
"terminal-ui/package.json",
"scripts/run-product.js",
"skills",
"web/dist",
"README.md",
"README_CN.md",
"README_EN.md",
"LICENSE",
"docs/SECURITY_WARNING.md"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('server/dist',{recursive:true,force:true})\"",
"build": "tsc -p server/tsconfig.json",
"dev": "tsc -p server/tsconfig.json && node server/dist/main.js",
"dev:watch": "tsc -p server/tsconfig.json --watch & sleep 3 && node --watch server/dist/main.js",
"prestart": "npm run build",
"start": "node server/dist/main.js",
"start:stack": "node scripts/start_stack.js",
"start:latest": "node scripts/start_latest.js",
"start:tui": "npm --prefix terminal-ui run tui",
"typecheck": "tsc -p server/tsconfig.json --noEmit",
"lint": "eslint server/src/ -f unix",
"lint:fix": "eslint server/src/ -f unix --fix",
"format": "prettier --write \"server/src/**/*.ts\"",
"format:check": "prettier --check \"server/src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepack": "npm run build && npm run build:terminal-ui && npm run install:web && npm run build:web",
"build:terminal-ui": "tsc -p terminal-ui/tsconfig.json",
"build:web": "npm --prefix web run build",
"install:web": "npm --prefix web ci",
"pack:npm": "npm pack",
"release:build": "npm run clean && npm run build",
"release:pack": "npm run release:build && npm pack",
"release:verify": "node scripts/verify_release_package.js"
},
"engines": {
"node": ">=24"
},
"keywords": [
"security",
"pentest",
"agent",
"typescript",
"nestjs"
],
"repository": {
"type": "git",
"url": "https://github.com/iammm0/secbot.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@nestjs/common": "^11.0.0",
"@nestjs/config": "^4.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/platform-express": "^11.0.0",
"@nestjs/serve-static": "^5.0.5",
"better-sqlite3": "^11.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"figlet": "^1.10.0",
"fuzzysort": "^3.0.0",
"ink": "^4.4.1",
"ink-markdown": "^1.0.4",
"ink-text-input": "^5.0.1",
"react": "^18.2.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@emnapi/core": "1.9.2",
"@emnapi/runtime": "1.9.2",
"@emnapi/wasi-threads": "1.2.1",
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.3",
"@types/node": "^22.10.0",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-unix": "^9.0.1",
"prettier": "^3.8.1",
"tsx": "^4.20.6",
"typescript": "^5.8.3",
"vitest": "^4.1.2"
}
}