-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
53
54
55
56
57
58
59
{
"name": "@cristiand391/oclif-carapace-spec-plugin",
"description": "oclif plugin to generate a carapace spec",
"version": "0.2.2",
"author": {
"name": "Cristian Dominguez",
"url": "https://github.com/cristiand391"
},
"homepage": "https://github.com/cristiand391/oclif-carapace-spec-plugin",
"bugs": "https://github.com/cristiand391/oclif-carapace-spec-plugin/issues",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@oclif/core": "^4",
"ansis": "^3.3.2",
"ejs": "^3.1.10",
"yaml": "^2.5.1"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8",
"oclif": "^4",
"ts-node": "^10",
"typescript": "^5"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"keywords": [
"oclif",
"carapace"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"oclif": {
"bin": "carapace-spec",
"commands": "./dist/commands",
"topicSeparator": " ",
"hooks": {
"plugins:postinstall": "./dist/hooks/refresh-cache.js",
"plugins:postuninstall": "./dist/hooks/refresh-cache.js"
}
},
"repository": "cristiand391/oclif-carapace-spec-plugin",
"scripts": {
"build": "rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts",
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif manifest"
},
"types": "dist/index.d.ts"
}