Files
smartcli/package.json

69 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2015-10-04 23:21:10 +02:00
{
2023-07-10 02:42:41 +02:00
"name": "@push.rocks/smartcli",
2018-06-28 23:57:40 +02:00
"private": false,
2025-10-28 09:32:21 +00:00
"version": "4.0.14",
"description": "A library that simplifies building reactive command-line applications using observables, with robust support for commands, arguments, options, aliases, and asynchronous operation management.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-03 17:00:36 +02:00
"type": "module",
2015-10-04 23:21:10 +02:00
"scripts": {
"test": "(tstest test/ --verbose)",
2023-08-19 09:47:03 +02:00
"build": "(tsbuild --web --allowimplicitany)",
2022-08-03 17:07:11 +02:00
"buildDocs": "tsdoc"
2015-10-04 23:21:10 +02:00
},
"repository": {
"type": "git",
2024-05-29 14:12:09 +02:00
"url": "https://code.foss.global/push.rocks/smartcli.git"
2015-10-04 23:21:10 +02:00
},
"keywords": [
2024-04-14 01:02:06 +02:00
"CLI",
"command line",
"observable",
"reactive",
"asynchronous",
2024-04-14 01:02:06 +02:00
"commands",
"arguments",
"options",
"alias",
2024-04-14 01:02:06 +02:00
"typescript",
"node.js",
"development tool"
2015-10-04 23:21:10 +02:00
],
2016-11-19 17:41:11 +01:00
"author": "Lossless GmbH <office@lossless.com> (https://lossless.com)",
2015-10-04 23:21:10 +02:00
"license": "MIT",
"bugs": {
2016-06-09 14:01:06 +02:00
"url": "https://gitlab.com/pushrocks/smartcli/issues"
2015-10-04 23:21:10 +02:00
},
2024-05-29 14:12:09 +02:00
"homepage": "https://code.foss.global/push.rocks/smartcli",
2015-10-05 23:33:57 +02:00
"dependencies": {
"@push.rocks/lik": "^6.2.2",
"@push.rocks/smartlog": "^3.1.10",
2024-05-28 13:42:10 +02:00
"@push.rocks/smartobject": "^1.0.12",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrx": "^3.0.10",
"yargs-parser": "22.0.0"
2015-10-05 23:33:57 +02:00
},
2015-10-04 23:21:10 +02:00
"devDependencies": {
"@git.zone/tsbuild": "^2.6.8",
"@git.zone/tsrun": "^1.6.2",
"@git.zone/tstest": "^2.7.0",
"@types/node": "^24.9.1"
2020-03-11 22:49:43 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
2020-03-11 22:49:43 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2021-04-07 20:25:17 +00:00
],
"browserslist": [
"last 1 chrome versions"
],
"packageManager": "pnpm@10.18.1+sha512.77a884a165cbba2d8d1c19e3b4880eee6d2fcabd0d879121e282196b80042351d5eb3ca0935fa599da1dc51265cc68816ad2bddd2a2de5ea9fdf92adbec7cd34"
2025-04-01 14:19:35 +00:00
}