-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 3.08 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
109
110
111
112
113
{
"name": "reg-visualizer",
"displayName": "reg-visualizer",
"description": "Preview the selected js RexExp.",
"repository": {
"url": "https://github.com/yubaoquan/reg-visualizer"
},
"icon": "images/logo.png",
"version": "0.0.2",
"publisher": "ybq",
"engines": {
"vscode": "^1.63.0"
},
"keywords": [
"RegExp",
"reg",
"visualizer",
"javascript"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:reg-visualizer.visualize"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "reg-visualizer.visualize",
"title": "RegExp Visualize"
}
],
"menus": {
"editor/context": [
{
"when": "editorHasSelection",
"command": "reg-visualizer.visualize",
"group": "1_modification"
}
]
},
"configuration": {
"title": "Reg Visualizer",
"properties": {
"reg-visualizer.webview-mode": {
"type": "string",
"default": "single",
"description": "Whether add a new webview on each visualization.",
"enum": [
"single",
"multiple"
],
"enumDescriptions": [
"Only show one webview all the time, new regexp replace old one.",
"Each regexp visualization opens a new webview."
]
},
"reg-visualizer.hide-header": {
"type": "boolean",
"default": false,
"description": "Hide the header section of webview, including title and github fork icon."
},
"reg-visualizer.hide-fork": {
"type": "boolean",
"default": false,
"description": "Hide the github fork icon."
},
"reg-visualizer.hide-footer": {
"type": "boolean",
"default": false,
"description": "Hide the footer section of webview."
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vscode/test-electron": "^2.0.3",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"regulex": "^0.0.5"
}
}