-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.36 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.36 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"publisher": "Libroworks",
"repository": {
"type": "git",
"url": "https://github.com/libroworks/vivliostyle-cli-helper"
},
"name": "vivliostyle-cli-helper",
"displayName": "vivliostyle-cli-helper",
"description": "vivliostyle cli for vscode",
"version": "0.0.10",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vivliostyle-cli-helper.previewByConfig",
"onCommand:vivliostyle-cli-helper.buildByConfig",
"onCommand:vivliostyle-cli-helper.previewThis",
"onCommand:vivliostyle-cli-helper.buildThis",
"onCommand:vivliostyle-cli-helper.installCLI"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "vivliostyle-cli-helper.installCLI",
"title": "install/update vivliostyle-cli",
"category": "vivliostyle-cli-helper"
},
{
"command": "vivliostyle-cli-helper.previewByConfig",
"title": "連結プレビューvivliostyle preview (with config)",
"category": "vivliostyle-cli-helper"
},
{
"command": "vivliostyle-cli-helper.buildByConfig",
"title": "連結ビルドvivliostyle build (with config)",
"category": "vivliostyle-cli-helper"
},
{
"command": "vivliostyle-cli-helper.previewThis",
"title": "これプレビューvivliostyle preview (Current File)",
"category": "vivliostyle-cli-helper"
},
{
"command": "vivliostyle-cli-helper.buildThis",
"title": "これビルドvivliostyle build (Current File)",
"category": "vivliostyle-cli-helper"
}
],
"menus": {
"editor/context": [
{
"submenu": "vivliostyle-cli-submenu1",
"group": "vivliostyle cli helper",
"when": "resourceLangId == markdown || resourceLangId == html"
}
],
"vivliostyle-cli-submenu1": [
{
"command": "vivliostyle-cli-helper.previewByConfig",
"group": "1_vivliostyle-cli",
"when": "resourceLangId == markdown || resourceLangId == html"
},
{
"command": "vivliostyle-cli-helper.buildByConfig",
"group": "1_vivliostyle-cli",
"when": "resourceLangId == markdown || resourceLangId == html"
},
{
"command": "vivliostyle-cli-helper.previewThis",
"group": "0_vivliostyle-cli",
"when": "resourceLangId == markdown || resourceLangId == html"
},
{
"command": "vivliostyle-cli-helper.buildThis",
"group": "0_vivliostyle-cli",
"when": "resourceLangId == markdown || resourceLangId == html"
},
{
"command": "vivliostyle-cli-helper.installCLI",
"group": "2_vivliostyle-cli",
"when": "resourceLangId == markdown || resourceLangId == html"
}
]
},
"submenus": [
{
"id": "vivliostyle-cli-submenu1",
"label": "vivliostyle cli helper"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.70.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"eslint": "^8.20.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.7.4",
"@vscode/test-electron": "^2.1.5"
}
}