forked from dolthub/dolt-workbench
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
115 lines (115 loc) · 3.35 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"private": true,
"name": "dolt-workbench",
"description": "SQL workbench for MySQL and PostgreSQL databases",
"version": "0.3.0",
"main": "app/background.js",
"workspaces": {
"packages": [
"graphql-server",
"web"
]
},
"packageManager": "[email protected]",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"postinstall": "electron-builder install-app-deps",
"clean": "npm-run-all 'clean:*'",
"clean:web": "yarn workspace @dolt-sql-workbench/web clean",
"clean:misc": "rimraf node_modules '*/node_modules' '*/.eslintcache' '*/*.tsbuildinfo' '*/dist' web/.next",
"compile": "npm-run-all 'compile:*'",
"compile:graphql-server": "yarn workspace @dolt-sql-workbench/graphql-server compile",
"compile:web": "yarn workspace @dolt-sql-workbench/web compile"
},
"build": {
"appId": "com.dolthub.dolt-workbench",
"productName": "Dolt Workbench",
"buildVersion": "0.3.0",
"copyright": "Copyright © 2024 <DoltHub Inc>",
"files": [
"app",
"package.json"
],
"extraFiles": [
"graphql-server/dist/*",
"graphql-server/dist/**/*",
"graphql-server/node_modules",
"!**/node_modules/@nestjs/cli/node_modules/fsevents/**",
{
"from": "build/mac/Assets.car",
"to": "Resources/Assets.car"
},
{
"from": "build/mac/AppIcon.icns",
"to": "Resources/AppIcon.icns"
}
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/mac/AppIcon.icns",
"extendInfo": {
"CFBundleIconName": "AppIcon",
"CFBundleIconFile": "AppIcon"
},
"target": [
{
"target": "mas",
"arch": "universal"
},
{
"target": "dmg"
}
],
"artifactName": "${productName}-mac-${arch}.${ext}",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"provisioningProfile": "build/mac/AppleDevelopment.provisionprofile",
"entitlements": "build/mac/entitlements.plist",
"entitlementsInherit": "build/mac/entitlements.inherit.plist"
},
"mas": {
"category": "public.app-category.developer-tools",
"icon": "build/mac/AppIcon.icns",
"extendInfo": {
"CFBundleIconName": "AppIcon",
"CFBundleIconFile": "AppIcon",
"CFBundleDisplayName": "Dolt Workbench"
},
"artifactName": "${productName}-mac-${arch}.${ext}",
"type": "distribution",
"notarize": {
"teamId": "FK9YU86WZ5"
},
"x64ArchFiles": "*",
"hardenedRuntime": false,
"gatekeeperAssess": false,
"asarUnpack": [
"**/*.node"
],
"provisioningProfile": "build/mac/MacAppStore.provisionprofile",
"entitlements": "build/mac/entitlements.mas.plist",
"entitlementsInherit": "build/mac/entitlements.mas.inherit.plist"
}
},
"dependencies": {
"electron-serve": "^1.3.0",
"electron-store": "^8.2.0"
},
"devDependencies": {
"@electron/osx-sign": "^1.3.1",
"@types/node": "^22.5.2",
"@types/react": "^18.3.5",
"autoprefixer": "^10.4.19",
"electron": "^31.0.1",
"electron-builder": "^24.13.3",
"next": "^14.2.4",
"nextron": "^9.1.0",
"npm-run-all": "4.1.5",
"postcss": "^8.4.40",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"typescript": "^5.4.5"
}
}