forked from souche/vscode-mindmap
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
73 lines (73 loc) · 1.65 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": "vscode-mindmap",
"displayName": "vscode-mindmap",
"icon": "resources/icon.png",
"description": "mindmap for vscode",
"version": "0.0.16",
"publisher": "eightHundreds",
"repository": {
"type": "git",
"url": "https://github.com/eightHundreds/vscode-mindmap.git"
},
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCustomEditor:vscode-mindmap.editor"
],
"main": "./out/extension",
"contributes": {
"customEditors": [
{
"viewType": "vscode-mindmap.editor",
"displayName": "draw io editor",
"selector": [
{
"filenamePattern": "*.km"
},
{
"filenamePattern": "*.km.svg"
}
]
}
],
"languages": [
{
"id": "km",
"extensions": [
".km",
".km.svg"
],
"aliases": [
"KM",
"km"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "run-s build:extension build:core build:mind",
"build:extension": "tsc -p ./",
"build:core": "cd ./kityminder/core && npm run build",
"build:mind": "cd ./kityminder/webui && npm run build",
"watch": "tsc -watch -p ./",
"test": "npm run build && node ./node_modules/vscode/bin/test",
"pack": "npx vsce package",
"publish": "npx vsce publish patch"
},
"dependencies": {
"xmind": "^0.5.0"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"@types/vscode": "^1.44.0",
"npm-run-all": "^4.1.5",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
}
}