UNPKG

@bomb.sh/tools

Version:

The internal dev, build, and lint CLI for Bombshell projects

98 lines 2.2 kB
{ "name": "@bomb.sh/tools", "version": "0.3.4", "description": "The internal dev, build, and lint CLI for Bombshell projects", "keywords": [ "bombshell", "cli", "internal", "skills", "tanstack-intent" ], "homepage": "https://bomb.sh", "license": "MIT", "author": { "name": "Bombshell", "email": "oss@bomb.sh", "url": "https://bomb.sh" }, "repository": { "type": "git", "url": "git+https://github.com/bombshell-dev/tools.git" }, "bin": { "bsh": "dist/bin.mjs" }, "files": [ "dist", "skills", "!skills/_artifacts", ".claude-plugin", "tsconfig.json", "package.json", "oxfmtrc.json", "oxlintrc.json" ], "type": "module", "exports": { ".": { "import": "./dist/bin.mjs" }, "./skills/*": "./skills/*", "./test-utils": { "types": "./dist/test-utils/index.d.mts", "import": "./dist/test-utils/index.mjs" }, "./*": "./dist/*", "./package.json": "./package.json", "./tsconfig.json": "./tsconfig.json" }, "publishConfig": { "access": "public" }, "dependencies": { "@bomb.sh/args": "^0.3.1", "@humanfs/node": "^0.16.7", "@humanfs/types": "^0.15.0", "@typescript/native-preview": "7.0.0-dev.20260307.1", "knip": "^5.85.0", "oxfmt": "^0.36.0", "oxlint": "^1.51.0", "publint": "^0.3.18", "tinyexec": "^1.0.1", "tsdown": "^0.21.0-beta.2", "vitest": "^4.0.18", "vitest-ansi-serializer": "^0.2.1" }, "devDependencies": { "@changesets/cli": "^2.28.1", "@tanstack/intent": "^0.0.23", "@types/node": "^22.13.14" }, "volta": { "node": "22.14.0" }, "knip": { "ignore": [ "rules/**" ], "ignoreDependencies": [ "@bomb.sh/args", "@typescript/native-preview", "oxfmt", "oxlint", "publint", "tsdown", "vitest" ] }, "scripts": { "bsh": "node --experimental-strip-types --no-warnings ./src/bin.ts", "dev": "pnpm run bsh dev", "build": "pnpm run bsh build --dts", "format": "pnpm run bsh format", "init": "pnpm run bsh init", "lint": "pnpm run bsh lint", "test": "pnpm run bsh test" } }