-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.69 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
{
"name": "vscode-localwp-addon",
"productName": "VS Code",
"version": "1.0.0",
"author": {
"name": "Refact",
"email": "[email protected]",
"url": "https://refact.co"
},
"keywords": [
"localwp",
"vscode",
"addon"
],
"bgColor": "#013233",
"icon": "icon.svg",
"slug": "vscode-localwp-addon",
"description": "Instantly open project in VS Code",
"renderer": "lib/renderer.js",
"main": "lib/main.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "tsc",
"watch": "yarn run build --watch",
"link": "sh ./npm/scripts/symlink.sh",
"unlink": "sh ./npm/scripts/unlink.sh",
"lint": "eslint ."
},
"devDependencies": {
"@getflywheel/eslint-config-local": "1.0.4",
"@getflywheel/local": "^8",
"@types/classnames": "^2.2.9",
"@types/dateformat": "^3.0.1",
"@types/react": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"babel-eslint": "^10.1.0",
"eslint": "^8.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"typescript": "^4"
},
"peerDependencies": {
"react": ">= 16.4.0",
"react-dom": ">= 16.4.0",
"react-router-dom": "^4.3.1"
},
"dependencies": {
"@getflywheel/local-components": "^17",
"classnames": "^2.2.6",
"dateformat": "^3.0.3",
"fs-extra": "^9.0.1",
"lodash": "^4.17.21",
"prop-types": "^15.6.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-router-dom": "^5.1.2"
},
"bundledDependencies": [
"@getflywheel/local-components",
"classnames",
"dateformat",
"lodash",
"prop-types"
],
"engines": {
"local-by-flywheel": "^5.0.0"
}
}