-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"name": "exploitlens",
"version": "0.0.0",
"private": true,
"description": "Differential exploit replay and evidence-backed fix verification.",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@11.18.0",
"engines": {
"node": ">=22.11.0",
"pnpm": ">=10"
},
"scripts": {
"build": "pnpm -r --stream run build",
"clean": "pnpm -r --stream run clean && rimraf node_modules/.cache",
"exploitlens": "tsx scripts/cli.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"schemas:generate": "tsx scripts/generate-json-schemas.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json && pnpm -r --stream run typecheck",
"verify": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^22.15.3",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsx": "^4.23.12",
"typescript": "^5.9.2",
"typescript-eslint": "^8.45.0",
"vitest": "^3.2.4",
"zod": "^4.4.3"
}
}