-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.7 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.7 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@bomb.sh/tools",
"version": "0.2.2",
"description": "The internal dev, build, and lint CLI for Bombshell projects",
"keywords": [
"bombshell",
"cli",
"internal"
],
"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"
},
"type": "module",
"exports": {
".": {
"import": "./dist/bin.mjs"
},
"./*": "./dist/*",
"./package.json": "./package.json",
"./tsconfig.json": "./tsconfig.json"
},
"publishConfig": {
"access": "public"
},
"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"
},
"dependencies": {
"@bomb.sh/args": "^0.3.1",
"@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"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@types/node": "^22.13.14"
},
"volta": {
"node": "22.14.0"
},
"packageManager": "pnpm@10.4.0",
"pnpm": {},
"knip": {
"ignore": [
"rules/**"
],
"ignoreDependencies": [
"@bomb.sh/args",
"@typescript/native-preview",
"oxfmt",
"oxlint",
"publint",
"tsdown",
"vitest"
]
}
}