tsdoc/package.json

70 lines
1.8 KiB
JSON
Raw Normal View History

2019-05-13 17:41:02 +00:00
{
2024-03-31 13:09:30 +00:00
"name": "@git.zone/tsdoc",
2024-05-17 15:41:50 +00:00
"version": "1.1.29",
2019-05-13 17:41:02 +00:00
"private": false,
2024-04-20 21:14:13 +00:00
"description": "An advanced TypeScript documentation tool using AI to generate and enhance documentation for TypeScript projects.",
2020-11-24 20:24:30 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-06-07 15:54:00 +00:00
"type": "module",
2019-05-13 17:41:02 +00:00
"author": "Lossless GmbH",
"license": "MIT",
2019-05-14 06:50:50 +00:00
"bin": {
"tsdoc": "cli.js"
},
2019-05-13 17:41:02 +00:00
"scripts": {
2024-04-12 13:35:09 +00:00
"test": "(tstest test/) && npm run testCli",
"testCli": "(node ./cli.ts.js) && (node ./cli.ts.js aidocs)",
2022-06-07 15:54:00 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2019-05-13 17:41:02 +00:00
},
"devDependencies": {
2024-05-17 15:38:35 +00:00
"@git.zone/tsbuild": "^2.1.76",
2024-03-31 13:09:30 +00:00
"@git.zone/tsrun": "^1.2.46",
2024-04-20 21:14:13 +00:00
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.23",
2024-05-17 15:38:35 +00:00
"@types/node": "^20.12.12"
2019-05-13 17:41:02 +00:00
},
"dependencies": {
2024-03-31 13:09:30 +00:00
"@push.rocks/early": "^4.0.3",
2024-04-20 21:14:13 +00:00
"@push.rocks/npmextra": "^5.0.13",
2024-03-31 13:09:30 +00:00
"@push.rocks/qenv": "^6.0.5",
2024-05-17 15:38:35 +00:00
"@push.rocks/smartai": "^0.0.17",
2024-04-14 00:11:38 +00:00
"@push.rocks/smartcli": "^4.0.10",
2024-04-03 11:34:26 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2024-04-20 21:14:13 +00:00
"@push.rocks/smartfile": "^11.0.14",
2024-04-03 11:34:26 +00:00
"@push.rocks/smartinteract": "^2.0.15",
2024-03-31 13:09:30 +00:00
"@push.rocks/smartlog": "^3.0.1",
2024-05-17 15:38:35 +00:00
"@push.rocks/smartlog-destination-local": "^9.0.2",
"@push.rocks/smartpath": "^5.0.18",
2024-04-20 21:14:13 +00:00
"@push.rocks/smartshell": "^3.0.5",
2024-04-12 13:07:56 +00:00
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
2019-05-28 10:11:53 +00:00
},
"files": [
2020-11-24 20:24:30 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-05-28 10:11:53 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-11-24 20:24:30 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-12 13:07:56 +00:00
],
"keywords": [
"TypeScript",
2024-04-20 21:14:13 +00:00
"documentation generation",
2024-04-12 13:07:56 +00:00
"AI-enhanced documentation",
2024-04-20 21:14:13 +00:00
"CLI tool",
2024-04-12 13:07:56 +00:00
"code analysis",
2024-04-20 21:14:13 +00:00
"automated documentation",
"developer tools",
2024-04-12 13:28:55 +00:00
"API documentation",
2024-04-20 21:14:13 +00:00
"technical writing",
"code quality improvement"
2019-05-28 10:11:53 +00:00
]
2024-05-17 15:41:50 +00:00
}