ruvector/npm/package.json
BAS-More c6579f6eed security: add npm overrides for vulnerable transitive dependencies
Pins node-forge>=1.4.0, flatted>=3.3.3, picomatch>=4.0.3,
lodash>=4.17.22, brace-expansion>=2.0.2 via package.json overrides
to resolve Dependabot alerts downstream in BAS-More/RuView.

Co-Authored-By: claude-flow <ruv@ruv.net>
2026-04-13 15:42:02 +10:00

39 lines
1.2 KiB
JSON

{
"name": "@ruvector/workspace",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "node tests/run-all-tests.js",
"test:unit": "node tests/run-all-tests.js --only=unit",
"test:integration": "node tests/run-all-tests.js --only=integration",
"test:perf": "node tests/run-all-tests.js --perf",
"test:workspaces": "npm run test --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"format": "prettier --write \"packages/**/*.{ts,js,json,md}\"",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"overrides": {
"node-forge": ">=1.4.0",
"flatted": ">=3.3.3",
"picomatch": ">=4.0.3",
"lodash": ">=4.17.22",
"brace-expansion": ">=2.0.2"
}
}