-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 884 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 884 Bytes
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
{
"name": "@usage-spec/yargs",
"version": "1.1.0",
"description": "Generates usage spec for CLIs written with yargs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"yargs",
"usage",
"cli",
"kdl",
"shell-completion"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gaojunran/usage-integrations.git",
"directory": "packages/yargs-usage"
},
"type": "module",
"dependencies": {
"@usage-spec/core": "^1.1.0"
},
"peerDependencies": {
"yargs": "^17.0.0"
},
"devDependencies": {
"@types/yargs": "^17.0.35",
"yargs": "^17.7.2"
}
}