commandstruct
Version:
Type safe and modular CLIs with Sade
53 lines • 1.35 kB
JSON
{
"name": "commandstruct",
"version": "0.3.1",
"description": "Type safe and modular CLIs with Sade",
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"keywords": [
"command",
"cli",
"sade",
"hollywood-di",
"typescript"
],
"author": "Eric Afes <eriicafes@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eriicafes/commandstruct.git"
},
"bugs": {
"url": "https://github.com/eriicafes/commandstruct/issues"
},
"homepage": "https://github.com/eriicafes/commandstruct#readme",
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@types/node": "^20.17.17",
"@vitest/coverage-v8": "^3.0.5",
"shx": "^0.3.4",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"peerDependencies": {
"hollywood-di": ">= 0.6.1",
"sade": ">= 1.8.1"
},
"scripts": {
"build": "tsc --noEmit && shx rm -rf dist && tsup src/index.ts --format esm,cjs --dts",
"release": "pnpm run build && changeset publish",
"watch": "vitest",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
}
}