-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.2 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.2 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"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"
},
"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"
},
"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"
},
"packageManager": "pnpm@10.4.0",
"pnpm": {},
"knip": {
"ignore": [
"rules/**"
],
"ignoreDependencies": [
"@bomb.sh/args",
"@typescript/native-preview",
"oxfmt",
"oxlint",
"publint",
"tsdown",
"vitest"
]
}
}