database-studio 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,8 +3,8 @@
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>Hello world project</title>
7
- <script type="module" crossorigin src="/assets/index-CaE9o5ex.js"></script>
6
+ <title>Database Studio - Modern MySQL Viewer & Schema Explorer</title>
7
+ <script type="module" crossorigin src="/assets/index-Dmi_zxgv.js"></script>
8
8
  <link rel="stylesheet" crossorigin href="/assets/index-6l-HeN7r.css">
9
9
  </head>
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "database-studio",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -11,6 +11,14 @@
11
11
  "dist"
12
12
  ],
13
13
  "git-checks": false,
14
+ "scripts": {
15
+ "build:client": "vite build",
16
+ "build:server": "tsup server/index.ts --format cjs --minify --out-dir dist/server --splitting false",
17
+ "build:cli": "tsup bin/cli.ts --format cjs --minify --out-dir dist --splitting false",
18
+ "build": "pnpm build:client && pnpm build:server && pnpm build:cli && cp README.md dist/README.md",
19
+ "start": "node dist/cli.cjs",
20
+ "link:global": "pnpm link --global"
21
+ },
14
22
  "dependencies": {
15
23
  "axios": "^1.13.6",
16
24
  "cookie-parser": "^1.4.7",
@@ -100,12 +108,5 @@
100
108
  "tsup": {
101
109
  "sourcemap": false
102
110
  },
103
- "scripts": {
104
- "build:client": "vite build",
105
- "build:server": "tsup server/index.ts --format cjs --minify --out-dir dist/server --splitting false",
106
- "build:cli": "tsup bin/cli.ts --format cjs --minify --out-dir dist --splitting false",
107
- "build": "pnpm build:client && pnpm build:server && pnpm build:cli && cp README.md dist/README.md",
108
- "start": "node dist/cli.cjs",
109
- "link:global": "pnpm link --global"
110
- }
111
- }
111
+ "packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
112
+ }