-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.74 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@gesslar/bedoc",
"version": "1.5.1",
"description": "Pluggable documentation engine for any language and format",
"publisher": "gesslar",
"main": "./src/core/Core.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gesslar/BeDoc.git"
},
"bugs": {
"url": "https://github.com/gesslar/BeDoc/issues"
},
"bin": {
"bedoc": "src/cli.js"
},
"exports": {
".": {
"import": "./src/core/Core.js",
"types": "./dist/types/core/Core.d.ts"
},
"./BeDoc": {
"import": "./src/core/Core.js",
"types": "./dist/types/core/Core.d.ts"
},
"./*": {
"import": "./src/*",
"types": "./dist/types/*"
}
},
"type": "module",
"types": "dist/types/index.d.ts",
"scripts": {
"lint:check": "npx eslint .",
"lint:fix": "npx eslint . --fix"
},
"dependencies": {
"commander": "^13.0.0",
"dotenv": "^16.4.7",
"error-stack-parser": "^2.1.4",
"globby": "^14.0.2",
"micromatch": "^4.0.8",
"node-fetch": "^3.3.2",
"yaml": "^2.7.0"
},
"devDependencies": {
"@stylistic/eslint-plugin-js": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"axios": "^1.7.9",
"chokidar": "^4.0.3",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint": "^9.18.0",
"form-data": "^4.0.1"
},
"keywords": [
"documentation",
"plugin",
"parser",
"printer",
"generator",
"language",
"format",
"hooks"
],
"author": "gesslar",
"license": "Unlicense",
"contributes": {
"commands": [
{
"command": "vscode-bedoc.generateDocs",
"title": "BeDoc: Generate Documentation"
}
]
},
"extensionKind": [
"workspace",
"ui"
]
}