-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.09 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
{
"name": "vscode-refactor-by-js",
"displayName": "Refactor by JS",
"description": "Write javascript functions to bulk refactor your source code, with live preview.",
"icon": "images/ts-logo.png",
"version": "0.0.16",
"engines": {
"vscode": "^1.47.0"
},
"publisher": "q",
"repository": {
"type": "git",
"url": "https://github.com/Que3216/vscode-refactor-by-js.git"
},
"activationEvents": [
"onCommand:vscode-refactor-by-js.start",
"onWebviewPanel:vscode-refactor-by-js"
],
"main": "./build/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-refactor-by-js.start",
"title": "Refactor by JS"
}
]
},
"categories": [
"Other"
],
"keywords": [
"refactor",
"typescript",
"javascript",
"find",
"replace",
"bulk",
"scripting",
"ast",
"tsmorph",
"tsquery"
],
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-panelgroup": "^1.0.12",
"terser": "3.16.0",
"lodash-es": "^4.17.15",
"@blueprintjs/core": "^3.31.0",
"@blueprintjs/icons": "^3.20.1",
"highlight.js": "10.2.0",
"ts-morph": "8.1.1"
},
"resolutions": {
"terser": "3.14.1"
},
"scripts": {
"vscode:prepublish": "./scripts/build-non-split.js && webpack --mode none",
"start": "react-scripts start",
"build": "./scripts/build-non-split.js && webpack --mode none",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^14.11.5",
"@types/jest": "^23.3.13",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"@types/react-panelgroup": "^1.0.1",
"@types/lodash-es": "^4.17.3",
"@types/highlight.js": "9.12.2",
"vscode": "^1.0.0",
"react-scripts": "^2.1.3",
"rewire": "^4.0.1",
"typescript": "^4.0.2",
"ts-loader": "^5.3.3",
"webpack": "4.28.3",
"webpack-cli": "^3.3.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}