forked from summerscar/vscode-live2d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.88 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "live2d",
"displayName": "live2d",
"description": "vscode的live2d扩展",
"version": "1.2.3",
"author": "summerscar",
"publisher": "shenyu1996",
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"icon": "logo_s.png",
"contributes": {
"commands": [
{
"command": "live2d.install",
"title": "Live2dInstall"
},
{
"command": "live2d.uninstall",
"title": "Live2dUninstall"
}
],
"configuration": {
"type": "object",
"title": "live2d插件配置",
"properties": {
"live2d.width": {
"type": "number",
"default": 200,
"description": "canvas宽度"
},
"live2d.height": {
"type": "number",
"default": 220,
"description": "canvas高度"
},
"live2d.bottom": {
"default": 20,
"description": "canvas距底部位置"
},
"live2d.right": {
"default": 20,
"description": "canvas距右侧位置"
},
"live2d.model": {
"type": "string",
"default": "hijiki",
"description": "模型名称"
},
"live2d.headPos": {
"type": "number",
"default": 0.5,
"description": "重心"
},
"live2d.scale": {
"type": "number",
"default": 2,
"description": "缩放"
},
"live2d.opacity": {
"type": "number",
"default": 0.7,
"description": "透明度"
},
"live2d.hoverOpacity": {
"type": "number",
"default": 1,
"description": "hover透明度"
},
"live2d.canHover": {
"type": "boolean",
"default": true,
"description": "可拖动(hover效果)"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"eslint": "^4.11.0",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
},
"repository": "https://github.com/summerscar/vscode-live2d.git"
}