-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
118 lines (118 loc) · 4.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
116
117
118
{
"name": "myschemaflow",
"version": "1.0.0",
"description": "An electron.js application designed to assist you in creating diagrams, especially for MySQL databases. It offers a user-friendly interface that allows you to visualize and comprehend your database structure more easily.",
"main": "./out/main/index.js",
"author": "Finestwork",
"homepage": "https://github.com/Finestwork/my-schema-flow",
"repository": "https://github.com/Finestwork/my-schema-flow",
"publish": {
"provider": "github",
"releaseType": "release"
},
"build": {
"productName": "MySchemaFlow",
"appId": "com.finestwork.schema-sparkle",
"files": "!resources{/*}",
"copyright": "Copyright © 2019 ${author}",
"fileAssociations": [
{
"ext": "msf",
"name": "MySchemaFlow File",
"role": "Editor"
}
],
"win": {
"target": [
"nsis"
]
},
"nsis": {
"oneClick": false,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"allowToChangeInstallationDirectory": true
}
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "npm run build && electron-builder --mac --config",
"build:linux": "npm run build && electron-builder --linux --config"
},
"dependencies": {
"@electron-toolkit/preload": "^2.0.0",
"@electron-toolkit/utils": "^2.0.0",
"@floating-ui/dom": "^1.5.3",
"@floating-ui/vue": "^1.0.2",
"@types/lodash": "^4.14.202",
"@types/nprogress": "^0.2.3",
"@vue-flow/background": "^1.2.0",
"@vue-flow/controls": "^1.1.0",
"@vue-flow/core": "^1.26.0",
"@vue-flow/minimap": "^1.2.0",
"@vue-flow/node-toolbar": "^1.1.0",
"@vueuse/core": "^10.7.0",
"@vueuse/integrations": "^10.7.0",
"animejs": "^3.2.1",
"bounce.js": "^0.8.2",
"cleave-zen": "^0.0.9",
"dagre": "^0.8.5",
"focus-trap": "^7.5.4",
"html-to-image": "^1.11.11",
"klona": "^2.0.6",
"lodash": "^4.17.21",
"lottie-web": "^5.12.2",
"monaco-editor": "^0.45.0",
"monaco-sql-languages": "^0.12.0-beta.10",
"mysql2": "^3.7.0",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"overlayscrollbars": "^2.4.6",
"pinia": "^2.1.7",
"sql-ddl-to-json-schema": "^4.1.0",
"sql.js": "^1.9.0",
"uuid": "^9.0.1",
"vue-draggable-plus": "^0.3.3",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^1.0.1",
"@electron-toolkit/eslint-config-ts": "^1.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@rushstack/eslint-patch": "^1.3.3",
"@types/node": "^18.17.5",
"@types/numeral": "^2.0.5",
"@vitejs/plugin-vue": "^4.3.1",
"@vue-macros/volar": "^0.17.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"assert": "^2.1.0",
"autoprefixer": "^10.4.16",
"electron": "^25.6.0",
"electron-builder": "^24.6.3",
"electron-devtools-installer": "^3.2.0",
"electron-vite": "^1.0.29",
"eslint": "^8.47.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.17.0",
"postcss": "^8.4.31",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.7",
"tailwindcss": "^3.3.5",
"typescript": "^5.1.6",
"unplugin-vue-macros": "^2.7.0",
"util": "^0.12.5",
"vite": "^4.5.1",
"vue": "^3.3.4",
"vue-tsc": "^1.8.8"
}
}