boss.sh
Version:
boss.sh is a versatile script runner enabling seamless execution of scripts from multiple languages within JavaScript/TypeScript projects.
83 lines • 2.02 kB
JSON
{
"name": "boss.sh",
"description": "boss.sh is a versatile script runner enabling seamless execution of scripts from multiple languages within JavaScript/TypeScript projects.",
"keywords": [
"boss",
"bun",
"bun-shell",
"multi-language",
"script execution",
"language agnostic",
"polyglot",
"interpreter",
"runtime",
"cross-language",
"universal script runner",
"versatile scripting tool",
"language-agnostic scripting",
"import",
"orchestrator",
"javascript",
"typescript",
"scripting",
"tooling",
"module",
"file import",
"npm",
"open-source",
"development",
"code import",
"package"
],
"version": "0.0.8",
"private": false,
"type": "module",
"engines": {
"bun": "^1.0.35",
"node": "prefer bun",
"npm": "prefer bun"
},
"packageManager": "bun@1.0.35",
"publishConfig": {
"access": "public"
},
"homepage": "https://npmjs.com/package/boss.sh",
"repository": {
"type": "git",
"url": "https://github.com/siguici/boss.sh"
},
"bugs": "https://github.com/siguici/boss.sh/issues",
"author": {
"name": "Sigui Kessé Emmanuel",
"email": "siguici@proton.me",
"url": "https://sigui.deno.dev"
},
"files": [
"src"
],
"module": "./src/index.ts",
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@types/bun": "^1.0.11",
"@types/node": "^20.11.30",
"typescript": "^5.4.3"
},
"scripts": {
"check": "biome ci .",
"fix": "bun run format.fix && bun run lint.fix",
"format": "biome format .",
"format.fix": "biome format --write .",
"lint": "biome check .",
"lint.fix": "biome check --apply-unsafe .",
"test": "bun test",
"test.cov": "bun test --coverage",
"test.hot": "bun test --hot",
"test.watch": "bun test --watch",
"type.check": "tsc --incremental --noEmit"
}
}