-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·74 lines (74 loc) · 1.67 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
{
"name": "tsx-api-generate",
"displayName": "TSX组件API文档生成",
"description": "组件API文档生成器",
"version": "2.0.2",
"publisher": "honorsuper",
"icon": "icon.png",
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/honorsuper/api-generate"
},
"activationEvents": [
"onCommand:start"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "start",
"title": "组件API文档生成"
}
],
"menus": {
"editor/context": [
{
"when": "editorFocus",
"command": "start",
"group": "navigation"
}
],
"explorer/context": [
{
"command": "start",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mdast": "^3.0.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/react": "^18.0.12",
"@types/vscode": "^1.49.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"react": "^18.1.0",
"vscode-test": "^1.4.0",
"@types/prettier": "^2.6.3",
"typescript": "^4.7.3"
},
"dependencies": {
"prettier": "^2.6.2",
"react-docgen-typescript": "^2.2.2"
}
}