-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.11 KB
/
package.json
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
{
"name": "commands-x",
"description": "Elegant command-line interface (CLI) development tool",
"version": "0.0.1",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/13OnTheCode/commands-x#readme",
"bugs": "https://github.com/13OnTheCode/commands-x/issues",
"author": {
"name": "13OnTheCode",
"email": "[email protected]",
"url": "https://ryongyon.com"
},
"repository": {
"type": "git",
"url": "https://github.com/13OnTheCode/commands-x.git"
},
"keywords": [
"cli",
"cmd",
"command",
"line",
"argv",
"args",
"parameters",
"flags",
"parse"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]",
"scripts": {
"build": "unbuild --minify"
},
"devDependencies": {
"@13onthecode/eslint-config": "^1.1.6",
"@13onthecode/typescript-config": "^0.0.5",
"@types/node": "^20.6.0",
"eslint": "^8.49.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0"
},
"exports": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
]
}