-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 4.15 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 4.15 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
{
"name": "dojolm-monorepo",
"version": "1.0.0",
"description": "DojoLM - LLM Red Teaming and Security Testing Platform with TPI Taxonomy",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build:packages": "npm run build --workspace=bu-tpi --workspace=@dojolm/mcp --workspace=@dojolm/scanner",
"build": "npm run build:packages && npm run build --workspace=dojolm-web",
"build:watch": "npm run dev:web",
"dev": "npm run dev:web",
"test": "npm run test --workspace=bu-tpi && npm run test --workspace=@dojolm/mcp && npm run test --workspace=@dojolm/scanner && npm run test --workspace=dojolm-web",
"test:watch": "npm run test:watch --workspace=dojolm-web",
"lint": "npm run lint --workspace=dojolm-web",
"type-check": "npm run typecheck --workspace=bu-tpi --workspace=@dojolm/mcp --workspace=@dojolm/scanner --workspace=dojolm-web",
"clean": "npm run clean --workspace=dojolm-web",
"security:scan": "npm audit --audit-level=moderate",
"sbom:generate": "npx @cyclonedx/cyclonedx-npm --output-file sbom.json --output-format JSON --ignore-npm-errors",
"lint:md": "markdownlint-cli2 '**/*.md' '#node_modules'",
"test:schemas": "node tools/validate-agent-schema.js && node tools/validate-workflow-schema.js && node tools/validate-module-schema.js",
"qa": "npm run test:schemas && npm run lint && npm run lint:md && npm test && bash scripts/security-regression.sh",
"lint:links": "lychee --exclude-path node_modules/ --exclude-path .next/ --exclude-path dist/ '**/*.md' || echo 'Install lychee: https://github.com/lycheeverse/lychee#installation'",
"verify:docs": "node tools/verify-doc-metrics.js",
"test:tools": "node --test tools/__tests__/*.test.js",
"lint:unmounted": "cd packages/dojolm-web && npx --no-install knip --no-progress || echo 'knip not installed; add to devDependencies to enable unmounted-component detection'",
"dev:web": "npm run dev --workspace=packages/dojolm-web",
"build:web": "npm run build --workspace=packages/dojolm-web",
"start:web": "npm run start --workspace=packages/dojolm-web",
"session:create": "bash team/QA-tools/setup-evidence-dir.sh",
"session:list": "tsx team/QA-tools/session-manager.ts list",
"session:show": "tsx team/QA-tools/session-manager.ts show",
"session:update": "tsx team/QA-tools/session-manager.ts update",
"session:close": "tsx team/QA-tools/session-manager.ts close",
"report:generate": "tsx team/QA-tools/generate-report.ts",
"push:dev": "bash deploy/deploy-challenger.sh",
"push:dev:dry": "bash deploy/deploy-challenger.sh --dry-run",
"push:prod": "bash deploy/deploy-dojo.sh",
"push:prod:dry": "bash deploy/deploy-dojo.sh --dry-run",
"deploy:status": "make status"
},
"keywords": [
"dojolm",
"llm",
"red-teaming",
"tpi",
"prompt-injection",
"security-testing",
"crowdstrike",
"adversarial-ml",
"ai-safety"
],
"author": "DojoLM Team",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@clack/core": "^1.2.0",
"@clack/prompts": "^1.0.0",
"chalk": "^5.6.2",
"cmdk": "^1.1.1",
"commander": "^11.0.0",
"fs-extra": "^11.3.3",
"glob": "^10.5.0",
"inquirer": "^9.2.0",
"ora": "^8.0.0",
"picocolors": "^1.1.1",
"semver": "^7.7.4",
"tar": "^7.5.7",
"zod": "^3.22.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^20.10.0",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.16.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.23.2",
"eslint-plugin-unicorn": "^62.0.0",
"eslint-plugin-yml": "^3.1.2",
"markdownlint-cli2": "^0.21.0",
"prettier": "^3.1.0",
"tsx": "^4.6.0",
"typedoc": "^0.25.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.55.0",
"vitest": "^4.0.18"
},
"overrides": {
"eslint": "^9.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dojolm/dojolm.git"
},
"bugs": {
"url": "https://github.com/dojolm/dojolm/issues"
},
"homepage": "https://github.com/dojolm/dojolm#readme"
}