@bomb.sh/tools
Version:
The internal dev, build, and lint CLI for Bombshell projects
84 lines • 1.96 kB
JSON
{
"name": "@bomb.sh/tools",
"version": "0.6.1",
"description": "The internal dev, build, and lint CLI for Bombshell projects",
"keywords": [
"bombshell",
"cli",
"internal",
"skills"
],
"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",
"rules",
"skills",
"!skills/_artifacts",
"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.20260623.1",
"knip": "^6.9.0",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"publint": "^0.3.18",
"tinyexec": "^1.1.1",
"tsdown": "^0.22.3",
"ultramatter": "^0.0.4",
"vitest": "^4.1.2",
"vitest-ansi-serializer": "^0.2.1"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/node": "^22.19.15"
},
"volta": {
"node": "22.14.0"
},
"scripts": {
"bsh": "node --experimental-strip-types --no-warnings ./src/bin.ts",
"dev": "pnpm run bsh dev",
"build": "pnpm run bsh build",
"format": "pnpm run bsh format",
"init": "pnpm run bsh init",
"lint": "pnpm run bsh lint",
"publint": "pnpm run bsh publint",
"test": "pnpm run bsh test"
}
}