-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.79 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
{
"name": "ruby-tags",
"displayName": "Ruby tags",
"description": "Ruby is used to display pronunciation hints in some Asian languages. It can also display small annotations that are relevant to the main content. Ruby is used in some Asian languages, including Japanese and Taiwanese.",
"version": "0.0.2",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.ruby-tags"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.ruby-tags",
"title": "%menu-name%"
}
],
"menus": {
"editor/context": [{
"when": "editorHasSelection",
"command": "extension.ruby-tags",
"group": "gtranslate@100"
}]
},
"keybindings": [{
"command": "extension.ruby-tags",
"key": "ctrl+shift+alt+r",
"mac": "cmd+shift+alt+r"
}]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.65.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"mocha": "^9.2.1",
"typescript": "^4.5.5",
"@vscode/test-electron": "^2.1.2"
},
"keywords": ["ruby", "ruby-tags", "ruby tags", "ruby tag", "ルビ", "ルビ タグ", "ルビ タグ"],
"icon": "images/icon256x256.png",
"publisher": "IchiharaYamato",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/ichihara-yamato/ruby-tags"
},
"bugs": "https://github.com/ichihara-yamato/ruby-tags/issues"
}