-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·55 lines (55 loc) · 1.16 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
{
"name": "vscode-asciiflow2",
"displayName": "Asciiflow2",
"description": "Asciiflow in VS Code",
"version": "0.2.0",
"author": "zenghongtu",
"publisher": "zenghongtu",
"license": "MIT",
"icon": "resources/logo.gif",
"engines": {
"vscode": "^1.38.0"
},
"repository": {
"type": "git",
"url": "https://github.com/zenghongtu/vscode-asciiflow2"
},
"homepage": "https://github.com/zenghongtu/vscode-asciiflow2/blob/master/README.md",
"categories": [
"Other"
],
"keywords": [
"asciiflow",
"flow",
"diagram",
"draw",
"ascii char"
],
"preview": true,
"main": "./out/extension.js",
"activationEvents": [
"onCommand:asciiflow.open"
],
"contributes": {
"commands": [
{
"command": "asciiflow.open",
"title": "Open Asciiflow",
"category": "Asciiflow"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -w -p ./"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^10.5.2",
"@types/vscode": "^1.38.0",
"tslint": "^5.16.0",
"typescript": "^3.5.1"
}
}