-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.59 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@bomb.sh/tools",
"version": "0.0.2",
"type": "module",
"license": "MIT",
"bin": {
"bsh": "dist/bin.js"
},
"description": "The internal dev, build, and lint CLI for Bombshell projects",
"keywords": [
"cli",
"bombshell",
"internal"
],
"homepage": "https://bomb.sh",
"author": {
"name": "Bombshell",
"email": "oss@bomb.sh",
"url": "https://bomb.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bombshell-dev/tools.git"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/bin.js"
},
"./*": "./dist/*",
"./package.json": "./package.json",
"./tsconfig.json": "./tsconfig.json"
},
"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",
"test": "pnpm run bsh test"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@types/node": "^22.13.14"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@bomb.sh/args": "^0.3.1",
"esbuild": "^0.25.1",
"escalade": "^3.2.0",
"tinyexec": "^1.0.1"
},
"packageManager": "pnpm@10.4.0",
"volta": {
"node": "22.14.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}