UNPKG

adastra-cli-kit

Version:

Adastra ✨ CLI Kit is a bunch of utils and modules that are shared across CLI apps like `create-adastra` and `adastra-cli` to have one source of truth for both these two packages. Its an internal private package not intended for external distribution.

48 lines 1.18 kB
{ "name": "adastra-cli-kit", "version": "0.1.3", "author": "Blanklob", "license": "MIT", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist" ], "dependencies": { "chalk": "^5.0.1", "gradient-string": "^2.0.2", "log-update": "^5.0.1", "moment": "^2.29.4", "ora": "^6.1.0", "sisteransi": "^1.0.5", "adastra-branding": "0.1.2" }, "devDependencies": { "@types/gradient-string": "^1.1.2", "eslint": "^7.32.0", "adastra-tsconfig": "0.1.0", "eslint-config-adastra": "0.1.2" }, "repository": { "type": "git", "url": "git+https://github.com/blanklob/adastra.git", "directory": "packages/adastra-cli-kit" }, "keywords": [ "adastra", "cli-kit" ], "scripts": { "dev": "npm run build -- --watch", "build": "tsup src/index.ts --dts --format esm --minify", "watch": "tsup src/index.ts --format esm --dts --watch", "lint": "eslint .", "lint:fix": "eslint . --fix", "typecheck": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "coverage": "vitest run --coverage" } }