-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.14 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
{
"name": "complyeaze-tools",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"homepage": "https://tools.complyeaze.com",
"repository": {
"type": "git",
"url": "git+https://github.com/lamemustafa/complyeaze-tools.git"
},
"bugs": {
"url": "https://github.com/lamemustafa/complyeaze-tools/issues"
},
"type": "module",
"packageManager": "pnpm@11.13.1",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "ASTRO_TELEMETRY_DISABLED=1 pnpm --filter @complyeaze-tools/site build",
"audit:high": "pnpm audit --audit-level high",
"dev": "ASTRO_TELEMETRY_DISABLED=1 pnpm --filter @complyeaze-tools/site dev",
"lint": "eslint .",
"preflight:live": "node scripts/live-preflight.mjs",
"source:freshness": "node scripts/source-freshness.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"scan:built-runtime-network": "node scripts/scan-built-runtime-network.mjs",
"scan:cloudflare:iac": "vitest run tests/config/cloudflare-iac.test.ts",
"scan:copy": "vitest run tests/policy/copy-claims.test.ts",
"scan:fixtures": "vitest run tests/policy/fixtures.test.ts",
"scan:k8s": "vitest run tests/config/tools-kubernetes.test.ts",
"scan:runtime-network": "vitest run tests/policy/runtime-network.test.ts",
"scan:source-freshness": "node scripts/source-freshness.mjs --fail-on-stale",
"scan:source-register": "vitest run tests/source-register/tools-meta.test.ts",
"verify": "pnpm typecheck && pnpm lint && pnpm test && pnpm scan:source-freshness && pnpm scan:cloudflare:iac && pnpm build && pnpm scan:built-runtime-network",
"review:gate": "node scripts/check-pr-review-gate.mjs"
},
"dependencies": {
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@astrojs/react": "^6.0.1",
"@eslint/js": "^10.0.1",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"astro": "^7.1.3",
"eslint": "^10.7.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.4",
"vitest": "^4.1.10"
}
}