-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 1.82 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
{
"name": "ganttdown",
"displayName": "GanttDown",
"description": "",
"version": "0.2.5",
"icon": "icon.png",
"engines": {
"vscode": "^1.41.0"
},
"repository": {
"url": "https://github.com/anydown/vscode-ganttdown"
},
"publisher": "hashrock",
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:gantt",
"onCommand:ganttdown.showGantt"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "ganttdown.showGantt",
"title": "Show Gantt"
}
],
"menus": {
"editor/title": [
{
"command": "ganttdown.showGantt",
"when": "resourceLangId == gantt",
"group": "navigation"
}
]
},
"languages": [
{
"id": "gantt",
"extensions": [
".gantt"
],
"aliases": [
"Gantt",
"gantt"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"build": "parcel build front/index.js -d assets",
"dev": "parcel front/index.js -d assets",
"compile": "tsc -p ./ && npm run build",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"publish": "vsce publish --yarn"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"@types/vscode": "^1.41.0",
"@vue/component-compiler-utils": "^3.2.0",
"cssnano": "^4.1.10",
"glob": "^7.1.5",
"mocha": "^8.1.1",
"parcel": "^1.12.4",
"tslint": "^6.1.3",
"typescript": "^3.9.7",
"vscode-test": "^1.4.0",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"@anydown/anydown-gantt": "^1.5.0",
"d3-scale": "^3.2.1",
"vue": "^2.6.11",
"vue-hot-reload-api": "^2.3.4"
}
}