tsdoc/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2019-05-13 17:41:02 +00:00
{
"name": "@gitzone/tsdoc",
2022-09-16 06:24:42 +00:00
"version": "1.1.13",
2019-05-13 17:41:02 +00:00
"private": false,
"description": "a tool for better documentation",
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": {
2020-11-24 20:24:30 +00:00
"test": "(tstest test/) && (node ./cli.ts.js)",
2022-06-07 15:54:00 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2019-05-13 17:41:02 +00:00
},
"devDependencies": {
2022-09-16 06:17:28 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.7.18"
2019-05-13 17:41:02 +00:00
},
"dependencies": {
2022-06-07 15:54:00 +00:00
"@pushrocks/early": "^4.0.3",
2022-09-16 06:17:28 +00:00
"@pushrocks/smartcli": "^4.0.6",
"@pushrocks/smartfile": "^10.0.5",
"@pushrocks/smartlog": "^3.0.1",
2020-11-24 20:24:30 +00:00
"@pushrocks/smartlog-destination-local": "^8.0.8",
2022-06-07 15:54:00 +00:00
"@pushrocks/smartpath": "^5.0.5",
"@pushrocks/smartshell": "^2.0.30",
2022-09-16 06:17:28 +00:00
"typedoc": "^0.23.14",
"typescript": "^4.8.3"
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"
2019-05-28 10:11:53 +00:00
]
2021-03-06 19:21:14 +00:00
}