-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 4.77 KB
/
Copy pathpackage.json
File metadata and controls
141 lines (141 loc) · 4.77 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "Spiral",
"productName": "Spiral",
"version": "1.0.3",
"description": "A cross-platform database client and administration tool for SQL and NoSQL databases, featuring interactive ERD visualizers, visual execution plans, database profiling, schema comparison, and a local AI query generator.",
"main": "./out/main/index.js",
"author": "Ophir Oren",
"homepage": "http://spiral.susita.com",
"desktopName": "com.susita.spiral",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"test": "vitest run",
"test:watch": "vitest",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux"
},
"dependencies": {
"@dagrejs/dagre": "^3.0.0",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@monaco-editor/react": "^4.7.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"@xyflow/react": "^12.10.2",
"better-sqlite3": "^12.10.0",
"dompurify": "^3.4.11",
"electron-store": "^8.2.0",
"electron-updater": "^6.3.9",
"html-to-image": "^1.11.13",
"i18next": "^26.0.3",
"ioredis": "^5.10.1",
"lucide-react": "^1.7.0",
"monaco-editor": "^0.55.1",
"mongodb": "^7.2.0",
"mssql": "^12.2.1",
"mysql2": "^3.22.3",
"node-llama-cpp": "^3.18.1",
"pg": "^8.20.0",
"react-i18next": "^17.0.2",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"sql-formatter": "^15.7.3",
"ssh2": "^1.17.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.19.1",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/ssh2": "^1.15.5",
"@vitejs/plugin-react": "^5.1.1",
"babel-plugin-react-compiler": "^1.0.0",
"electron": "^39.2.6",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"jsdom": "^25.0.1",
"prettier": "^3.7.4",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"typescript": "^5.9.3",
"vite": "^7.2.6",
"vitest": "^2.1.0"
},
"build": {
"appId": "com.susita.spiral",
"productName": "Spiral",
"asar": true,
"asarUnpack": [
"node_modules/node-llama-cpp/**/*.node",
"node_modules/node-llama-cpp/bins/**"
],
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"category": "Development;Utility",
"maintainer": "Ophir Oren",
"synopsis": "A cross-platform SQL/NoSQL database client with visual ERD, schema comparison, and an AI query generator.",
"description": "Spiral is a cross-platform database client and administration tool for SQL and NoSQL databases, featuring interactive ERD visualizers, visual execution plans, database profiling, schema comparison, and a local AI query generator. It supports MySQL, PostgreSQL, SQLite, MongoDB, Redis, and more.",
"icon": "build/icons/"
},
"mac": {
"category": "public.app-category.utilities",
"target": [
"dmg",
"zip"
],
"gatekeeperAssess": false
},
"mas": {
"entitlements": "build/entitlements.mas.plist",
"entitlementsInherit": "build/entitlements.mas.inherit.plist",
"provisioningProfile": "build/Spiral_Mac_App_Store_Provisioning_Profile.provisionprofile"
},
"masDev": {
"entitlements": "build/entitlements.mas.plist",
"entitlementsInherit": "build/entitlements.mas.inherit.plist",
"provisioningProfile": "build/Spiral_MacOS_Development_Provisioning_Profile.provisionprofile"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"directories": {
"output": "dist"
}
}
}