generated from blueplum/typescript-template
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "gen-doctests",
|
|
"description": "Tool for generating tests from JSDoc @example:s for various test harnesses",
|
|
"keywords": ["tool", "docs", "test", "doctest"],
|
|
"private": false,
|
|
"version": "0.2.2",
|
|
"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"
|
|
}
|
|
}
|