-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 1.69 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
{
"name": "vue-i18n-manage",
"displayName": "Vue-i18n-aux",
"description": "A vscode plugin for managing i18n files and auxiliary vue-i18n code.",
"publisher": "vue-i18n-manage",
"version": "0.5.3",
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:vue",
"onLanguage:javascript",
"onLanguage:typescript"
],
"keywords": [
"vue",
"vue-i18n",
"i18n",
"i18n manage",
"i18n tool",
"i18n helper"
],
"icon": "imgs/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/flyer-ui/vue-i18n-manage.git"
},
"homepage": "https://github.com/flyer-ui/vue-i18n-manage",
"main": "./out/extension.js",
"preview": true,
"contributes": {
"configuration": {
"type": "object",
"title": "vue-i18n-manage",
"properties": {
"vue-i18n-manage.localePath": {
"type": "string",
"default": ""
},
"vue-i18n-manage.primaryLanguage": {
"type": "string",
"default": "zh-CN"
},
"vue-i18n-manage.defaultFileName": {
"type": "string",
"default": ""
}
}
},
"keybindings": [
{
"command": "extension.config",
"key": "ctrl+p"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.3.1",
"vscode": "^1.1.28",
"tslint": "^5.12.1",
"@types/node": "^10.12.21",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"deepmerge": "^3.2.0",
"small-linked-list": "0.0.3"
},
"qna": "https://github.com/pfzhengd/vue-i18n-manage/issues"
}