-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.57 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
{
"name": "@cdot65/prisma-airs-cli",
"packageManager": "pnpm@10.6.5",
"version": "2.12.1",
"description": "CLI and library for Palo Alto Prisma AIRS — guardrail refinement, AI red teaming, model security scanning, profile audits",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"airs": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "pnpm run build",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"docker:build": "docker build -t prisma-airs-cli:local .",
"docker:build:amd64": "docker buildx build --platform linux/amd64 --load -t prisma-airs-cli:local-amd64 .",
"docker:build:arm64": "docker buildx build --platform linux/arm64 --load -t prisma-airs-cli:local-arm64 .",
"docker:run": "docker run --rm -v ~/.prisma-airs:/root/.prisma-airs prisma-airs-cli:local",
"docker:push:arm64": "./scripts/docker-push-arm64.sh",
"docs:gen": "tsx scripts/gen-cli-docs.ts",
"docs:api": "typedoc",
"docs:build": "pnpm docs:gen && pnpm docs:api && mkdocs build --strict",
"docs:serve": "pnpm docs:gen && pnpm docs:api && mkdocs serve",
"docs:check": "tsx scripts/check-cli-docs.ts"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cdot65/prisma-airs-cli.git"
},
"license": "MIT",
"dependencies": {
"@anthropic-ai/vertex-sdk": "^0.14.4",
"@cdot65/prisma-airs-sdk": "^0.12.0",
"@inquirer/prompts": "^8.3.0",
"@langchain/anthropic": "^1.3.25",
"@langchain/aws": "^1.3.3",
"@langchain/core": "^1.1.34",
"@langchain/google-genai": "^2.1.26",
"@langchain/google-vertexai": "^2.1.26",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"docx": "^9.6.1",
"dotenv": "^17.3.1",
"js-yaml": "^4.1.1",
"nanoid": "^5.0.0",
"p-limit": "^6.0.0",
"pdf-lib": "^1.17.1",
"piexifjs": "^1.0.6",
"sharp": "^0.34.5",
"zod": "^3.24.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@changesets/cli": "^2.31.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.0.0",
"tsx": "^4.0.0",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}