Files
2026-07-04 22:44:43 +02:00

54 lines
1.2 KiB
JSON

{
"name": "gen-doctests",
"author": {
"name": "BluePlum",
"url": "https://git.louiscreates.com/blueplum"
},
"description": "Tool for generating tests from JSDoc @example:s for various test harnesses",
"keywords": ["tool", "docs", "test", "doctest"],
"version": "0.2.3",
"type": "module",
"bin": "dist/index.js",
"scripts": {
"test": "vitest --run --reporter=tree",
"build": "tsc -b && node .config/build.js",
"prepack": "pnpm build",
"fmt": "prettier --write .",
"lint": "eslint .",
"preview": "vite preview"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./config": {
"types": "./dist/config.d.ts",
"default": "./dist/config.js"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.3",
"@types/picomatch": "^4.0.3",
"@typescript-eslint/types": "^8.61.1",
"esbuild": "^0.28.1",
"eslint": "^10.3.0",
"prettier": "^3.8.4",
"typescript-eslint": "^8.59.2",
"vitest": "^4.1.9"
},
"dependencies": {
"arktype": "^2.2.2",
"citty": "^0.2.2",
"find-up": "^8.0.0",
"jiti": "^2.7.0",
"picomatch": "^4.0.5",
"typescript": "^6.0.3"
},
"repository": {
"url": "https://git.louiscreates.com/blueplum/gen-doctests"
},
"license": "MIT"
}