forked from bombshell-dev/args
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.46 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.46 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
{
"name": "@bomb.sh/args",
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"version": "0.3.1",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bombshell-dev/args"
},
"bugs": {
"url": "https://github.com/bombshell-dev/args/issues"
},
"homepage": "https://github.com/bombshell-dev/args#README",
"scripts": {
"build": "node scripts/build.js && tsc -p .",
"bench": "node scripts/bench.js",
"dev": "vitest",
"fmt": "prettier --write \"**/*.{js,ts,md}\"",
"fmt:check": "prettier --list-different \"**/*.{js,ts,md}\"",
"test": "vitest run"
},
"files": [
"dist",
"CHANGELOG.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"keywords": [
"cli",
"args",
"yargs",
"minimist"
],
"author": {
"name": "Nate Moore",
"email": "nate@natemoo.re",
"url": "https://natemoo.re"
},
"license": "MIT",
"volta": {
"node": "20.18.1"
},
"packageManager": "pnpm@9.14.2",
"devDependencies": {
"@changesets/cli": "^2.18.1",
"benchmark": "^2.1.4",
"chalk": "^5.4.1",
"esbuild": "^0.25.1",
"gzip-size": "^7.0.0",
"minimist": "^1.2.7",
"mri": "^1.2.0",
"prettier": "^3.5.3",
"pretty-bytes": "^6.0.0",
"typescript": "^4.7.4",
"vitest": "^3.0.9",
"yargs-parser": "^21.1.1"
}
}