-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.15 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": "@fig/complete-commander",
"version": "3.2.0",
"description": "Export commander command as a Fig spec",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "tsx test/index.ts",
"test:overwrite": "OVERWRITE=true yarn test",
"clean:test": "git clean -Xf test",
"prepack": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withfig/autocomplete-tools.git"
},
"keywords": [
"commander",
"fig",
"spec",
"generator",
"plugin",
"integration"
],
"files": [
"lib/"
],
"author": "Federico Ciardi <fed.ciardi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/withfig/autocomplete-tools/issues"
},
"homepage": "https://github.com/withfig/autocomplete-tools#readme",
"peerDependencies": {
"commander": "^11.1.0"
},
"dependencies": {
"prettier": "^3.3.3"
},
"devDependencies": {
"@types/node": "^22.5.2",
"@withfig/autocomplete-types": "workspace:^",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public"
}
}