|
1 | 1 | { |
2 | | - "name": "@bomb.sh/template", |
| 2 | + "name": "@bomb.sh/nucleus", |
3 | 3 | "private": true, |
4 | 4 | "version": "0.0.0", |
5 | 5 | "type": "module", |
6 | 6 | "license": "MIT", |
| 7 | + "bin": { |
| 8 | + "nucleus": "./index.ts" |
| 9 | + }, |
| 10 | + "description": "The internal dev, build, and lint CLI for Bombshell projects", |
| 11 | + "keywords": [ |
| 12 | + "cli", |
| 13 | + "bombshell", |
| 14 | + "nucleus" |
| 15 | + ], |
| 16 | + "homepage": "https://bomb.sh", |
7 | 17 | "author": { |
8 | 18 | "name": "Bombshell", |
9 | 19 | |
10 | 20 | "url": "https://bomb.sh" |
11 | 21 | }, |
12 | 22 | "repository": { |
13 | 23 | "type": "git", |
14 | | - "url": "git+https://github.com/bombshell-dev/template.git" |
| 24 | + "url": "git+https://github.com/bombshell-dev/nucleus.git" |
| 25 | + }, |
| 26 | + "exports": { |
| 27 | + ".": { |
| 28 | + "import": "./dist/index.js" |
| 29 | + }, |
| 30 | + "./package.json": "./package.json", |
| 31 | + "./tsconfig.json": "./tsconfig.json" |
15 | 32 | }, |
16 | 33 | "scripts": { |
17 | | - "start": "tsx index.ts" |
| 34 | + "nucleus": "node --experimental-strip-types --no-warnings ./src/bin.ts", |
| 35 | + "dev": "pnpm run nucleus dev", |
| 36 | + "build": "pnpm run nucleus build", |
| 37 | + "format": "pnpm run nucleus format", |
| 38 | + "init": "pnpm run nucleus init", |
| 39 | + "lint": "pnpm run nucleus lint", |
| 40 | + "test": "pnpm run nucleus test" |
18 | 41 | }, |
19 | 42 | "devDependencies": { |
20 | | - "tsx": "^4.19.2" |
| 43 | + "@types/node": "^22.13.14" |
| 44 | + }, |
| 45 | + "dependencies": { |
| 46 | + "@biomejs/biome": "^1.9.4", |
| 47 | + "@bomb.sh/args": "^0.3.1", |
| 48 | + "esbuild": "^0.25.1", |
| 49 | + "escalade": "^3.2.0", |
| 50 | + "tinyexec": "^1.0.1" |
| 51 | + }, |
| 52 | + "pnpm": { |
| 53 | + "onlyBuiltDependencies": [ |
| 54 | + "esbuild" |
| 55 | + ] |
| 56 | + }, |
| 57 | + "volta": { |
| 58 | + "node": "22.14.0" |
21 | 59 | } |
22 | 60 | } |
0 commit comments