{ "name": "oxc-walker", "version": "1.0.0", "description": "", "license": "MIT", "repository": "oxc-project/oxc-walker", "files": [ "dist" ], "type": "module", "sideEffects": false, "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": "./dist/index.mjs" }, "dependencies": { "magic-regexp": "^0.11.0" }, "devDependencies": { "@types/node": "24.10.3", "@vitest/coverage-v8": "4.1.5", "knip": "^6.0.0", "lint-staged": "16.4.0", "oxc-parser": "0.129.0", "oxfmt": "^0.48.0", "oxlint": "^1.51.0", "oxlint-tsgolint": "^0.22.0", "simple-git-hooks": "2.13.1", "typescript": "6.0.3", "unbuild": "3.6.1", "vitest": "4.1.5" }, "peerDependencies": { "oxc-parser": ">=0.98.0", "rolldown": ">=1.0.0" }, "peerDependenciesMeta": { "oxc-parser": { "optional": true }, "rolldown": { "optional": true } }, "resolutions": { "oxc-walker": "link:." }, "simple-git-hooks": { "pre-commit": "npx lint-staged" }, "lint-staged": { "*": [ "oxfmt --no-error-on-unmatched-pattern" ], "*.{js,ts,mjs,cjs,json,.*rc}": [ "pnpm run lint --fix" ] }, "scripts": { "build": "unbuild", "dev": "vitest dev", "lint": "oxlint", "fmt": "oxfmt", "test": "pnpm test:unit && pnpm test:types", "test:unit": "vitest", "test:types": "tsc --noEmit" } }