-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.63 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
{
"name": "raw-to-ts",
"displayName": "RAW to TS",
"description": "Convert JSON object to typescript interfaces",
"version": "1.1.7",
"publisher": "mycssweb",
"icon": "icon.png",
"engines": {
"vscode": "^1.38.0"
},
"keywords": [
"types",
"util",
"typescript",
"json"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:rawToTs.fromSelection",
"onCommand:rawToTs.fromClipboard"
],
"repository": {
"type": "git",
"url": "https://github.com/guqingming/vscode-raw-to-ts.git"
},
"author": "https://github.com/guqingming",
"main": "./out/index.js",
"contributes": {
"commands": [
{
"command": "rawToTs.fromSelection",
"title": "Convert from Selection",
"category": "RAW to TS"
},
{
"command": "rawToTs.fromClipboard",
"title": "Convert from Clipboard",
"category": "RAW to TS"
}
],
"keybindings": [
{
"command": "rawToTs.fromSelection",
"key": "shift+ctrl+alt+S"
},
{
"command": "rawToTs.fromClipboard",
"key": "shift+ctrl+alt+V"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -w -p ./",
"package": "npx vsce package",
"publish": "npx vsce publish"
},
"dependencies": {
"copy-paste": "^1.1.3",
"raw-to-ts": "^0.1.4",
"uuid-by-string": "^3.0.2"
},
"devDependencies": {
"@types/copy-paste": "^1.1.30",
"@types/node": "^10.5.2",
"@types/universal-analytics": "0.3.27",
"@types/vscode": "^1.38.0"
}
}