-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
113 lines (113 loc) · 3 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vscode-ts-uml",
"displayName": "vscode-ts-uml",
"description": "Dynamic generates TypeScript UML diagrams to VSCode",
"version": "1.0.4",
"publisher": "myxvisual",
"author": {
"name": "myxvisual",
"email": "myxvisual@live.com"
},
"icon": "icons/ts-128x128.png",
"galleryBanner": {
"color": "#005aa0",
"theme": "dark"
},
"homepage": "https://github.com/myxvisual/vscode-ts-uml/blob/master/README.md",
"repository": {
"git": "git@github.com:myxvisual/vscode-ts-uml.git",
"http": "https://github.com/myxvisual/vscode-ts-uml.git"
},
"bugs": {
"url": "https://github.com/myxvisual/vscode-ts-uml/issues",
"email": "myxvisual@live.com"
},
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*",
"onCommand:tsUML.showFile",
"onCommand:tsUML.showFolder",
"onWebviewPanel:tsUML"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "tsUML.showFile",
"title": "Show Typescript UML from file"
},
{
"command": "tsUML.showFolder",
"title": "Show Typescript UML from folder"
}
],
"menus": {
"explorer/context": [
{
"command": "tsUML.showFile",
"when": "resourceLangId == typescript"
},
{
"command": "tsUML.showFile",
"when": "resourceLangId == typescriptreact"
},
{
"command": "tsUML.showFolder",
"when": "explorerResourceIsFolder"
}
]
},
"keybindings": [
{
"key": "ctrl+shift+alt+q",
"mac": "cmd+shift+alt+q",
"command": "tsUML.showFile",
"when": "editorTextFocus && editorLangId == typescript"
},
{
"key": "ctrl+shift+alt+q",
"mac": "cmd+shift+alt+q",
"command": "tsUML.showFile",
"when": "editorFocus && editorLangId == typescriptreact"
}
]
},
"scripts": {
"start": "npm run watch | npm run webpack-w",
"webpack-w": "cross-env NODE_ENV=development webpack -w",
"watch": "cross-env NODE_ENV=development tsc -w -p ./",
"vscode:prepublish": "npm run compile && npm run webpack-p",
"compile": "tsc -p ./",
"webpack-p": "cross-env NODE_ENV=production webpack",
"postinstall": "node ./node_modules/vscode/bin/install",
"package:vsce": "vsce package",
"publish:vsce": "vsce publish"
},
"dependencies": {
"md5": "^2.2.1",
"typescript": "^3.0.1"
},
"devDependencies": {
"@types/node": "^10.5.2",
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"awesome-typescript-loader": "^5.2.1",
"cross-env": "^5.2.0",
"json-loader": "^0.5.7",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-hot-loader": "^4.3.3",
"react-uwp": "^1.2.2",
"vscode": "^1.1.22",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^1.10.1",
"webpack-dev-server": "^3.1.9",
"webpack-hot-middleware": "^2.17.0"
}
}