smartinteract/package.json

64 lines
1.5 KiB
JSON
Raw Normal View History

2016-11-20 00:11:22 +00:00
{
2023-07-10 00:56:26 +00:00
"name": "@push.rocks/smartinteract",
"private": false,
2024-03-31 13:21:46 +00:00
"version": "2.0.15",
2024-04-14 15:43:28 +00:00
"description": "A package for creating smart CLI interactions with customizable questions and answers.",
2020-08-31 19:23:51 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-11-20 00:11:22 +00:00
"scripts": {
2020-02-07 16:45:48 +00:00
"test": "(tstest test/)",
2023-07-13 12:07:12 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2016-11-20 00:11:22 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:13:41 +00:00
"url": "https://code.foss.global/push.rocks/smartinteract.git"
2016-11-20 00:11:22 +00:00
},
"keywords": [
2024-04-14 15:43:28 +00:00
"CLI",
"interactive prompts",
"command line interface",
"user input handling",
"inquirer integration",
"CLI questions",
"CLI validations",
"CLI interactions",
"smart CLI",
"typescript"
2016-11-20 00:11:22 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartinteract/issues"
},
2024-05-29 12:13:41 +00:00
"homepage": "https://code.foss.global/push.rocks/smartinteract",
2016-11-20 00:11:22 +00:00
"dependencies": {
2024-03-31 13:21:46 +00:00
"@push.rocks/lik": "^6.0.14",
2023-07-13 12:07:12 +00:00
"@push.rocks/smartobject": "^1.0.12",
"@push.rocks/smartpromise": "^4.0.2",
2024-03-31 13:21:46 +00:00
"@types/inquirer": "^9.0.7",
"inquirer": "^9.2.17"
2016-11-20 00:11:22 +00:00
},
"devDependencies": {
2024-03-31 13:21:46 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.22"
2020-02-07 16:36:35 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-08-31 19:23:51 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-07 16:36:35 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-08-31 19:23:51 +00:00
],
"browserslist": [
"last 1 chrome versions"
2023-07-13 12:07:12 +00:00
],
"type": "module"
2024-04-14 15:43:28 +00:00
}