66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "ast-kit",
|
|
"version": "1.4.3",
|
|
"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": {
|
|
".": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@babel/parser": "^7.27.0",
|
|
"pathe": "^2.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/types": "^7.27.0",
|
|
"@sxzz/eslint-config": "^6.1.2",
|
|
"@sxzz/prettier-config": "^2.2.1",
|
|
"@types/node": "^22.14.1",
|
|
"@vitest/coverage-v8": "^3.1.1",
|
|
"@vitest/ui": "^3.1.1",
|
|
"bumpp": "^10.1.0",
|
|
"eslint": "^9.25.0",
|
|
"estree-walker": "^3.0.3",
|
|
"fast-glob": "^3.3.3",
|
|
"prettier": "^3.5.3",
|
|
"tsdown": "^0.9.3",
|
|
"tsx": "^4.19.3",
|
|
"typescript": "5.8.3",
|
|
"vitest": "^3.1.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.14.0"
|
|
},
|
|
"prettier": "@sxzz/prettier-config",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"lint:fix": "pnpm run lint --fix",
|
|
"build": "tsdown",
|
|
"test": "vitest",
|
|
"release": "bumpp && pnpm publish",
|
|
"typecheck": "tsc --noEmit"
|
|
}
|
|
} |