-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.44 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
{
"name": "dotup-vscode-override-typescript",
"displayName": "Override for typescript",
"description": "Override for typescript. Code completition for methods of extended class",
"version": "1.0.4",
"publisher": "dotup",
"author": "Peter Ullrich, dotup IT solutions",
"license": "MIT",
"icon": "images/tso_logo_800.png",
"keywords": [
"vscode",
"extension",
"override",
"typescript",
"code"
],
"activationEvents": [
"*"
],
"repository": {
"type": "git",
"url": "https://github.com/dotupNET/dotup-vscode-override-typescript"
},
"bugs": {
"url": "https://github.com/dotupNET/dotup-vscode-override-typescript/issues"
},
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Extension Packs",
"Formatters",
"Language Packs",
"Programming Languages",
"Snippets",
"Other"
],
"main": "./out/extension.js",
"scripts": {
"pack": "vsce package",
"publish-major": "vsce publish major",
"publish-minor": "vsce publish minor",
"publish-patch": "vsce publish patch",
"publish": "vsce publish",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"typescript": "^3.3.3",
"dotup-vscode-api-extensions": "^0.1.1",
"ts-morph": "^1.3.1",
"resolve": "^1.10.0"
},
"devDependencies": {
"@types/node": "^11.10.4",
"@types/resolve": "0.0.8",
"tslint": "^5.14.0",
"vscode": "^1.1.30"
}
}