@gambitnash/cli-plugin-json
Version:
Converts the program console output to json.
92 lines • 2.19 kB
JSON
{
"name": "@gambitnash/cli-plugin-json",
"version": "1.0.0-alpha.15",
"description": "Converts the program console output to json.",
"keywords": [
"CLI",
"NodeJs",
"Typescript"
],
"license": "MIT",
"homepage": "https://github.com/gambitnash/cli",
"bugs": {
"url": "https://github.com/gambitnash/cli/issues",
"email": "support@gambitnash.co.uk"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gambitnash/cli.git",
"directory": "packages/plugin-json"
},
"author": {
"name": "Lee Mason",
"email": "lee.mason@gambitnash.co.uk"
},
"contributors": [
{
"name": "Daniel Wilson",
"email": "dan.wilson@gambitnash.co.uk"
},
{
"name": "Craig Menzies",
"email": "craig.menzies@gambitnash.co.uk"
},
{
"name": "Richard Fisher",
"email": "richard.fisher@gambitnash.co.uk"
},
{
"name": "Daniel Davison",
"email": "daniel.davison@gambitnash.co.uk"
},
{
"name": "Marcin Grzybowski",
"email": "marcin.grzybowski@gambitnash.co.uk"
}
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist/*"
],
"engines": {
"npm": "please-use-yarn",
"node": ">=22.11.0",
"yarn": ">=4.6.0"
},
"packageManager": "yarn@4.6.0",
"dependencies": {
"@gambitnash/cli": "^1.0.0-alpha.15"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@vitest/coverage-v8": "^3.0.5",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsup-node src/index.ts --format esm,cjs --no-splitting --dts --shims",
"watch": "yarn build --watch",
"test": "vitest run --reporter=verbose --passWithNoTests"
}
}