-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.43 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.43 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
{
"name": "@bomb.sh/args",
"version": "0.3.1",
"type": "module",
"license": "MIT",
"author": {
"name": "Bombshell",
"email": "oss@bomb.sh",
"url": "https://bomb.sh"
},
"homepage": "https://github.com/bombshell-dev/args",
"keywords": [
"cli",
"args",
"yargs",
"minimist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "bsh dev",
"build": "bsh build",
"format": "bsh format",
"lint": "bsh lint",
"test": "vitest run"
},
"devDependencies": {
"@bomb.sh/tools": "^0.0.5",
"@changesets/cli": "^2.29.8",
"benchmark": "^2.1.4",
"chalk": "^5.6.2",
"esbuild": "^0.27.3",
"gzip-size": "^7.0.0",
"minimist": "^1.2.8",
"mri": "^1.2.0",
"prettier": "^3.8.1",
"pretty-bytes": "^6.1.1",
"typescript": "^4.9.5",
"vitest": "^4.0.18",
"yargs-parser": "^21.1.1"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/bombshell-dev/args"
},
"volta": {
"node": "22.14.0"
},
"packageManager": "pnpm@10.7.0",
"devEngines": {
"runtime": {
"name": "node",
"version": "22.14.0",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"version": "10.7.0",
"onFail": "error"
}
}
}