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

63 lines
1.5 KiB
JSON

{
"name": "ast-kit",
"version": "2.1.2",
"description": "A toolkit for easy Babel AST generation and manipulation.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/sxzz/ast-kit#readme",
"bugs": {
"url": "https://github.com/sxzz/ast-kit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sxzz/ast-kit.git"
},
"author": "三咲智子 Kevin Deng <sxzz@sxzz.moe>",
"funding": "https://github.com/sponsors/sxzz",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/parser": "^7.28.0",
"pathe": "^2.0.3"
},
"devDependencies": {
"@babel/types": "^7.28.2",
"@sxzz/eslint-config": "^7.1.2",
"@sxzz/prettier-config": "^2.2.3",
"@types/node": "^24.2.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"bumpp": "^10.2.2",
"eslint": "^9.33.0",
"estree-walker": "^3.0.3",
"fast-glob": "^3.3.3",
"prettier": "^3.6.2",
"tsdown": "^0.14.0",
"tsx": "^4.20.3",
"typescript": "5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.18.0"
},
"prettier": "@sxzz/prettier-config",
"scripts": {
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"test": "vitest",
"release": "bumpp",
"typecheck": "tsc --noEmit"
}
}