UNPKG

@bs-core/shell

Version:
48 lines 1.27 kB
{ "version": "1.20.4", "name": "@bs-core/shell", "description": "The Bamboo Shell", "type": "module", "exports": { ".": "./dist/shell.mjs" }, "files": [ "dist/shell.mjs", "dist/shell.d.ts", "dist/shell.mjs.map" ], "types": "./dist/shell.d.ts", "engines": { "node": ">=18.0.0" }, "keywords": [ "Bamboo", "Shell", "Framework" ], "author": "Black Eye Technology", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/blackeyetech/bamboo-mono.git" }, "bugs": { "url": "https://github.com/blackeyetech/bamboo-mono/issues" }, "homepage": "https://github.com/blackeyetech/bamboo-mono#readme", "dependencies": { "path-to-regexp": "^6.2.1" }, "private": false, "scripts": { "rollup": "rollup -c rollup.config.mjs", "build-dev": "tsc && npm run rollup", "build-prod": "npm run clean && tsc && NODE_ENV=production npm run rollup", "format-ts": "prettier --write 'src/**/*.ts'", "format-js": "prettier --write 'dist/**/*.{js,ts}'", "format-misc": "prettier --write '**/*.{json,md,yaml}'", "install-bin": "npm install -g $(npm pack . | tail -1)", "test": "echo \"No tests\" && exit 0", "clean": "rm -rf ./dist ./out" } }