mirror of
https://github.com/millionco/react-doctor.git
synced 2026-09-14 20:00:24 +08:00
28 lines
653 B
JSON
28 lines
653 B
JSON
{
|
|
"name": "@react-doctor/fuzz",
|
|
"version": "0.0.31",
|
|
"private": true,
|
|
"description": "Adversarial fuzzing harness for React Doctor rules.",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"fuzz": "cross-env REACT_DOCTOR_FUZZ=1 vp test run tests/fuzz-rules.test.ts",
|
|
"test": "vp test run",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"oxlint-plugin-react-doctor": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.6.0",
|
|
"cross-env": "^10.1.0"
|
|
},
|
|
"engines": {
|
|
"node": "^20.19.0 || >=22.13.0"
|
|
}
|
|
}
|