-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.41 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.41 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
{
"name": "autoscssstruct4vue",
"displayName": "AutoScssStruct4Vue",
"description": "auto scss struct from template for vue",
"version": "0.1.5",
"author": "kother@foxmail.com",
"publisher": "KQ",
"engines": {
"vscode": "^1.36.0"
},
"categories": [
"Other"
],
"icon": "asset/icon_r.png",
"keywords": [
"scss",
"scss",
"auto",
"auto scss",
"auto scss",
"autoscssstruct4Vue"
],
"repository": {
"type": "git",
"url": "https://github.com/accforgit/AutoScssStruct4Vue.git"
},
"bugs": {
"url": "https://github.com/accforgit/AutoScssStruct4Vue/issues"
},
"activationEvents": [
"onLanguage:vue"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.autoScssStruct",
"title": "autoScssStruct"
}
],
"menus": {
"editor/context": [
{
"when": "editorFocus",
"command": "extension.autoScssStruct",
"group": "navigation"
}
]
},
"configuration": {
"title": "AutoScssStruct4Vue",
"properties": {
"autoScssStruct4Vue.excuteMode": {
"type": "string",
"description": "在什么情况下重新生成 scss文件(when to excute)",
"default": "onCommand",
"enum": [
"onCommand",
"onSave&onCommand"
],
"enumDescriptions": [
"当使用右键菜单命令 autoScssStruct 命令时执行(excute when command)",
"当保存时,以及当使用右键菜单命令 autoScssStruct 命令时执行(excute when save&command)"
]
},
"autoScssStruct4Vue.scssFilePath": {
"type": "string",
"description": "编译生成的 scss字符串写入的文件路径,不传则默认写入当前 vue 文件的 style 标签内(如果文件不存在则自动创建)",
"default": ""
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.36.0",
"glob": "^7.1.4",
"mocha": "^10.2.0",
"typescript": "^3.3.1",
"tslint": "^5.12.1",
"vscode-test": "^1.0.0-next.0"
},
"dependencies": {
},
"license": "MIT"
}