Command line helper for Shopware, WordPress and various other server environment needs.
cli shopware bookstack wordpress
at develop 27 lines 630 B view raw
1{ 2 "name": "bcli", 3 "version": "0.1.0", 4 "description": "Command line helper for Shopware, WordPress and various other server environment needs.", 5 "author": { 6 "name": "Johannes Reckers", 7 "email": "contact@thevoid.cafe", 8 "url": "https://thevoid.cafe" 9 }, 10 "license": "MIT", 11 "module": "src/index.ts", 12 "type": "module", 13 "private": true, 14 "scripts": { 15 "dev": "bun --watch .", 16 "build": "bun build src/index.ts --compile --outfile dist/bcli" 17 }, 18 "devDependencies": { 19 "@types/bun": "latest" 20 }, 21 "peerDependencies": { 22 "typescript": "^5" 23 }, 24 "dependencies": { 25 "citty": "^0.2.2" 26 } 27}