-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 KB
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
{
"name": "swagger-editor",
"version": "1.0.0",
"description": "Editor de OpenAPI/Swagger basado en Electron",
"main": "main.js",
"scripts": {
"start": "electron .",
"package:mac": "electron-builder build --mac",
"package:win": "electron-builder build --windows",
"package:linux": "electron-builder build --linux",
"postinstall": "node postinstall.js"
},
"author": "Carlos Mur",
"license": "MIT",
"devDependencies": {
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-jsdoc": "^50.6.8",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.3"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.1",
"ace-builds": "^1.39.0",
"cors-anywhere": "^0.4.4",
"express": "^4.21.2",
"http-proxy-middleware": "^3.0.3",
"js-yaml": "^4.1.0",
"swagger-parser": "^10.0.3",
"swagger-ui": "^5.20.1"
},
"build": {
"appId": "com.cmurestudillos.swagger-editor",
"productName": "Swagger Editor",
"directories": {
"output": "release/"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "assets/icon.icns"
},
"win": {
"icon": "assets/icon.ico"
},
"linux": {
"icon": "assets/icon.png",
"category": "Development"
}
},
"overrides": {
"tree-sitter": "0.0.0-ignored"
}
}