@bs-core/astro
Version:
The Bamboo Shell Astro Adapter
54 lines • 1.4 kB
JSON
{
"version": "1.8.6",
"name": "@bs-core/astro",
"description": "The Bamboo Shell Astro Adapter",
"type": "module",
"exports": {
".": "./dist/astro.mjs"
},
"files": [
"dist/astro.mjs",
"dist/astro.d.ts",
"dist/astro.mjs.map"
],
"types": "./dist/astro.d.ts",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"Bamboo",
"Shell",
"Framework",
"Astro",
"astro-adapter"
],
"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",
"peerDependencies": {
"@bs-core/shell": "^1.20.4"
},
"private": false,
"devDependencies": {
"astro": "^4.10.2",
"@bs-core/shell": "^1.20.4"
},
"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"
}
}