@h3ravel/console
Version:
CLI utilities for scaffolding, running migrations, tasks and for H3ravel.
84 lines • 2.15 kB
JSON
{
"name": "@h3ravel/console",
"version": "11.6.1",
"description": "CLI utilities for scaffolding, running migrations, tasks and for H3ravel.",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./Utils": {
"import": "./dist/Utils.js",
"require": "./dist/Utils.cjs"
}
},
"typesVersions": {
"*": {
"Utils": [
"dist/Utils.d.ts"
],
"*": [
"dist/index.d.ts"
]
}
},
"bin": {
"musket": "bin/fire.js",
"spawn": "bin/spawn.js"
},
"files": [
"bin",
"dist"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://h3ravel.toneflix.net",
"repository": {
"type": "git",
"url": "git+https://github.com/h3ravel/framework.git",
"directory": "packages/console"
},
"keywords": [
"h3ravel",
"modern",
"web",
"H3",
"framework",
"nodejs",
"typescript",
"laravel"
],
"peerDependencies": {
"@h3ravel/arquebus": "^0.5.0",
"@h3ravel/core": "^1.11.0",
"@h3ravel/support": "^0.10.3"
},
"devDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.1",
"dayjs": "^1.11.18",
"execa": "^9.6.0",
"preferred-pm": "^4.1.1",
"radashi": "^12.6.2",
"resolve-from": "^5.0.0",
"tsx": "^4.20.5",
"@h3ravel/shared": "^0.20.9"
},
"scripts": {
"barrelx": "barrelsby --directory src --delete --singleQuotes",
"build": "tsdown --config-loader unconfig",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts",
"test": "jest --passWithNoTests",
"musket": "cross-env TEST=true APP_DEBUG=false tsx --experimental-specifier-resolution=node src/musket",
"musket:watch": "cross-env TEST=true APP_DEBUG=false tsx watch --experimental-specifier-resolution=node src/musket",
"release:patch": "pnpm build && pnpm version patch && git add . && git commit -m \"version: bump console package version\" && pnpm publish --tag latest",
"version-patch": "pnpm version patch"
}
}