-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.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
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
{
"name": "code-blast",
"displayName": "code-blast",
"description": "Particles blasts while typing in vscode with this extension",
"version": "0.0.11",
"publisher": "fanxq",
"repository": {
"type": "git",
"url": "https://github.com/fanxq/code-blast-for-vscode.git"
},
"icon": "icon.png",
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*",
"onCommand:codeBlast.showSettingsPage"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "codeBlast.showSettingsPage",
"title": "Open Settings Page",
"category": "CodeBlast"
}
],
"configuration": {
"type": "object",
"title": "code-blast Configuration. code-blast插件的配置",
"properties": {
"codeBlast.enabled": {
"type": "boolean",
"default": true,
"description": "Enable the extension(code-blast). 是否启用code-blast。"
},
"codeBlast.shake.enabled": {
"type": "boolean",
"default": true,
"description": "Enable shake effect. 是否启用shake效果。"
},
"codeBlast.particles.color": {
"type": "string",
"default": "",
"pattern": "rgb\\s*\\(\\s*\\d+\\s*,\\s*\\d+\\s*,\\s*\\d+\\s*\\)",
"description": "Set particles color. 设置粒子的颜色,如rgb(0,0,0)。"
},
"codeBlast.particles.shape": {
"type": "string",
"default": "dot",
"enum": [
"dot",
"rectangle",
"star",
"heart",
"text",
"pac-man",
"fire"
],
"description": "Set particles shape. 设置粒子的形状。"
},
"codeBlast.particles.texts": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"hello world"
],
"description": "Set texts you like when setting the 'codeBlast.particles.shape' to 'text'.当粒子形状设置为'text'时,你可以自定义要显示的文本。"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"build": "webpack --mode=production --config ./config/codeblast.webpack.config.js",
"build:settings": "webpack --mode=production --config ./config/settings.page.webpack.config.js",
"pack": "npm run build:settings && npm run build && cd ./dist && vsce package"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"eslint": "^4.6.1",
"html-webpack-plugin": "^4.2.0",
"node-sass": "^4.14.0",
"sass-loader": "^8.0.2",
"size-sensor": "^1.0.0",
"textarea-caret-position": "^0.1.1",
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"vue": "^2.6.11",
"vue-color": "^2.7.1",
"vue-loader": "^15.9.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
},
"dependencies": {}
}