-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.67 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.67 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
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
88
89
90
91
92
93
{
"name": "jsonlab",
"version": "1.0.0",
"description": "A tool for viewing, editing, and manipulating strongly-typed JSON documents",
"main": "electron/main.cjs",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"electron:dev": "concurrently \"cross-env BROWSER=none npm run dev\" \"wait-on http://localhost:5173 && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron .\"",
"electron:build": "npm run build && electron-builder",
"electron:build:win": "npm run build && electron-builder --win",
"electron:build:mac": "npm run build && electron-builder --mac",
"electron:build:linux": "npm run build && electron-builder --linux"
},
"build": {
"appId": "com.jsonlab.app",
"productName": "JSONLab",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json",
"src/assets/JSONLab_Icon.png"
],
"win": {
"target": [
"nsis",
"portable"
],
"icon": "src/assets/JSONLab_Icon.png"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "src/assets/JSONLab_Icon.png",
"category": "public.app-category.developer-tools"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "src/assets/JSONLab_Icon.png",
"category": "Development"
}
},
"dependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@monaco-editor/react": "^4.7.0",
"@types/dagre": "^0.7.53",
"@types/js-yaml": "^4.0.9",
"@types/papaparse": "^5.5.0",
"buffer": "^6.0.3",
"dagre": "^0.8.5",
"html-to-image": "^1.11.13",
"js-yaml": "^4.1.0",
"json-schema-to-typescript": "^15.0.4",
"jsonpath-plus": "^10.3.0",
"openapi-types": "^12.1.3",
"papaparse": "^5.5.3",
"quicktype-core": "^23.2.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactflow": "^11.11.4",
"smol-toml": "^1.4.2",
"swagger-parser": "^10.0.3",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.2.3",
"electron-builder": "^26.0.12",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"wait-on": "^9.0.3"
}
}