-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "react-class-to-functional",
"displayName": "React: class to functional",
"description": "Turn React Class Components into Functional Components",
"version": "0.0.1",
"publisher": "laegel",
"icon": "images/react.png",
"repository": {
"url": "https://github.com/Laegel/react-class-to-function"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:react-class-to-functional.transform"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "react-class-to-functional.transform",
"title": "Transform"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "webpack --config webpack.config.js",
"watch": "tsc -watch -p ./",
"pretest": "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.1.0",
"@types/node": "14.x",
"@types/prettier": "^2.4.4",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vscode/test-electron": "^2.1.2",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"mocha": "^9.2.1",
"ts-loader": "^9.2.8",
"typescript": "npm:typescript@4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@phenomnomnominal/tsquery": "^4.2.0",
"prettier": "^2.5.1",
"ts-factory-code-generator-generator": "^0.6.3",
"typescript-4.6.2": "npm:typescript@4.6.2"
}
}