-
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.65 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.65 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": "audithex-monorepo",
"version": "0.0.1",
"private": true,
"description": "Local-first AI security audit tool for any LLM-using codebase.",
"license": "AGPL-3.0-or-later",
"packageManager": "yarn@4.13.0",
"engines": {
"node": ">=22.0.0"
},
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter=@audithex/web",
"dev:cli": "turbo run dev --filter=@audithex/cli",
"test": "turbo run test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "turbo run typecheck",
"dupes": "jscpd --noSymlinks --formats-exts typescript:ts,tsx --ignore '**/node_modules/**,**/dist/**,**/coverage/**,**/.turbo/**,**/.next/**' apps packages",
"docs:check": "node scripts/check-docs.mjs",
"locales:check": "node scripts/check-locale-parity.mjs",
"stubs:check": "node scripts/check-no-stubs.mjs",
"verify": "yarn lint && yarn typecheck && yarn test && yarn dupes && yarn docs:check && yarn locales:check && yarn stubs:check",
"cli": "yarn workspace @audithex/cli exec audithex",
"user:create": "node apps/cli/bin/audithex.js user create",
"user:rotate": "node apps/cli/bin/audithex.js user create --force",
"infra:up": "docker compose up -d",
"infra:down": "docker compose down",
"infra:logs": "docker compose logs -f",
"infra:status": "docker compose ps",
"infra:nuke": "docker compose down -v"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.10.5",
"jscpd": "4.0.5",
"turbo": "2.3.3",
"typescript": "5.7.2",
"vitest": "2.1.8"
}
}