-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.12 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.12 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
{
"name": "@bomb.sh/$name",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"author": {
"name": "Bombshell",
"email": "oss@bomb.sh",
"url": "https://bomb.sh"
},
"homepage": "https://bomb.sh/docs/$name",
"keywords": [
"cli",
"bombshell"
],
"exports": {
".": {
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "bsh dev",
"build": "bsh build",
"format": "bsh format",
"lint": "bsh lint",
"test": "bsh test"
},
"devDependencies": {
"@bomb.sh/tools": "latest"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bombshell-dev/$name.git"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "22.14.0",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"version": "10.7.0",
"onFail": "error"
}
}
}