-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1 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
{
"name": "local-addon-xdebug-vscode",
"productName": "Xdebug + VS Code",
"version": "1.0.8",
"description": "One-click configurator for Xdebug + VSCode. Adapted for VSCode from https://github.com/getflywheel/local-addon-xdebug-phpstorm.",
"renderer": "lib/renderer.js",
"main": "lib/main.js",
"icon": "icon.svg",
"bgColor": "#f5fdf7",
"author": "Pixel Jar <[email protected]>",
"license": "MIT",
"slug": "xdebug-vscode",
"scripts": {
"build": "tsc",
"watch": "yarn run build --watch",
"prepare": "npm run build"
},
"devDependencies": {
"@getflywheel/local": "^6.6.0",
"@types/fs-extra": "^8.0.1",
"@types/jsdom": "^12.2.4",
"typescript": "^3.7.5"
},
"dependencies": {
"@getflywheel/local-components": "^17.6.2",
"fs-extra": "^8.1.0",
"jsdom": "^16.5.0",
"react": "^16.14.0",
"untildify": "^4.0.0",
"uuid": "^3.4.0"
},
"bundledDependencies": [
"@getflywheel/local-components",
"fs-extra",
"jsdom",
"untildify",
"uuid"
],
"engines": {
"local-by-flywheel": "^6.5.2"
}
}