2025-09-05 14:59:21 +08:00

60 lines
1.3 KiB
JSON

{
"name": "oxc-walker",
"type": "module",
"version": "0.4.0",
"description": "",
"license": "MIT",
"repository": "oxc-project/oxc-walker",
"sideEffects": false,
"exports": {
".": "./dist/index.mjs"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"oxc-parser": ">=0.72.0"
},
"dependencies": {
"estree-walker": "^3.0.3",
"magic-regexp": "^0.10.0"
},
"devDependencies": {
"@antfu/eslint-config": "4.17.0",
"@types/estree": "1.0.8",
"@types/node": "24.0.14",
"@vitest/coverage-v8": "3.2.4",
"bumpp": "10.2.0",
"eslint": "9.31.0",
"knip": "5.61.3",
"lint-staged": "16.1.2",
"oxc-parser": "0.77.2",
"simple-git-hooks": "2.13.0",
"typescript": "5.8.3",
"unbuild": "3.5.0",
"vitest": "3.2.4"
},
"resolutions": {
"oxc-walker": "link:."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
},
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint .",
"release": "bumpp && pnpm publish",
"test": "pnpm test:unit && pnpm test:types",
"test:unit": "vitest",
"test:types": "tsc --noEmit"
}
}