tsdoc/package.json

82 lines
2.1 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-06-23 22:01:37 +00:00
"version": "1.3.12",
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.",
2022-06-07 15:54:00 +00:00
"type": "module",
2024-06-23 09:59:38 +00:00
"exports": {
".": "./dist_ts/index.js"
},
"author": "Task Venture Capital GmbH",
2019-05-13 17:41:02 +00:00
"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)",
2024-06-22 11:11:22 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2019-05-13 17:41:02 +00:00
},
"devDependencies": {
2024-06-22 11:11:22 +00:00
"@git.zone/tsbuild": "^2.1.80",
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-06-22 11:11:22 +00:00
"@types/node": "^20.14.8"
2019-05-13 17:41:02 +00:00
},
"dependencies": {
2024-03-31 13:09:30 +00:00
"@push.rocks/early": "^4.0.3",
2024-06-22 11:11:22 +00:00
"@push.rocks/npmextra": "^5.0.23",
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-06-22 11:11:22 +00:00
"@push.rocks/smartcli": "^4.0.11",
2024-04-03 11:34:26 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2024-06-22 11:11:22 +00:00
"@push.rocks/smartfile": "^11.0.20",
"@push.rocks/smartgit": "^3.1.0",
2024-04-03 11:34:26 +00:00
"@push.rocks/smartinteract": "^2.0.15",
2024-06-22 11:11:22 +00:00
"@push.rocks/smartlog": "^3.0.7",
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",
"@push.rocks/smarttime": "^4.0.6",
"typedoc": "^0.26.1",
2024-06-22 11:11:22 +00:00
"typescript": "^5.5.2"
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"
2024-06-22 11:11:22 +00:00
],
"repository": {
"type": "git",
"url": "git+https://gitlab.com/gitzone/tsdoc.git"
},
"bugs": {
"url": "https://gitlab.com/gitzone/tsdoc/issues"
},
"homepage": "https://gitlab.com/gitzone/tsdoc#readme"
2024-06-22 11:20:56 +00:00
}