-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.46 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
{
"name": "dotup-vscode-interface-generator",
"displayName": "Interface generator",
"description": "Create interface declaration file from typescript class",
"version": "1.0.15",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Extension Packs",
"Formatters",
"Language Packs",
"Programming Languages",
"Snippets",
"Other"
],
"main": "./out/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/dotupNET/dotup-vscode-interface-generator.git"
},
"keywords": [
"vscode",
"extension",
"interface",
"generator",
"interface generator"
],
"publisher": "dotup",
"author": "Peter Ullrich, dotup IT solutions",
"license": "MIT",
"icon": "images/tsi_logo_128.png",
"activationEvents": [
"onCommand:extension.dotupGenerateInterface",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"contributes": {
"commands": [
{
"command": "extension.dotupGenerateInterface",
"title": "Generate interface"
}
],
"keybindings": {
"command": "extension.dotupGenerateInterface",
"key": "Ctrl+Alt+i"
},
"menus": {
"explorer/context": [
{
"when": "resourceLangId == typescript",
"command": "extension.dotupGenerateInterface",
"group": "2_workspace"
},
{
"when": "resourceLangId == typescriptreact",
"command": "extension.dotupGenerateInterface",
"group": "2_workspace"
}
]
}
},
"scripts": {
"test-mocha": "node node_modules/mocha/bin/mocha --require ts-node/register src/test/*.test.ts --reporter spec",
"pack": "vsce package",
"publish-major": "vsce publish major",
"publish-minor": "vsce publish minor",
"publish-patch": "vsce publish patch",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"typescript": "^3.3.3",
"ts-morph": "^1.3.0",
"dotup-vscode-api-extensions": "0.0.7"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.10.4",
"chai": "^4.2.0",
"mocha": "^6.0.2",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-microsoft-contrib": "^6.1.0",
"typescript-parser": "^2.6.1",
"vscode": "^1.1.30"
}
}