plotlink-ows 1.0.0 → 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.
Files changed (2) hide show
  1. package/bin/plotlink-ows.js +5 -0
  2. package/package.json +16 -15
@@ -291,6 +291,11 @@ switch (cmd) {
291
291
  case "status":
292
292
  cmdStatus();
293
293
  break;
294
+ case "stop":
295
+ log('The "stop" command has been removed.');
296
+ log("The server now runs in the foreground — press Ctrl+C to stop it.");
297
+ process.exit(0);
298
+ break;
294
299
  default:
295
300
  cmdStart();
296
301
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plotlink-ows",
3
- "version": "1.0.0",
3
+ "version": "1.0.4",
4
4
  "bin": {
5
5
  "plotlink-ows": "./bin/plotlink-ows.js"
6
6
  },
@@ -26,6 +26,7 @@
26
26
  "app:dev": "concurrently \"tsx watch app/server.ts\" \"vite --config app/vite.config.ts\"",
27
27
  "app:build": "vite build --config app/vite.config.ts",
28
28
  "app:start": "tsx app/server.ts",
29
+ "postinstall": "prisma generate --schema app/prisma/schema.prisma",
29
30
  "prisma:local": "prisma generate --schema app/prisma/schema.prisma && prisma db push --schema app/prisma/schema.prisma",
30
31
  "release:patch": "npm version patch && git push origin main --follow-tags && VERSION=$(node -p 'require(\"./package.json\").version') && gh release create \"v$VERSION\" --generate-notes --latest && npm publish",
31
32
  "release:minor": "npm version minor && git push origin main --follow-tags && VERSION=$(node -p 'require(\"./package.json\").version') && gh release create \"v$VERSION\" --generate-notes --latest && npm publish",
@@ -33,28 +34,16 @@
33
34
  },
34
35
  "dependencies": {
35
36
  "@aws-sdk/client-s3": "^3.1009.0",
36
- "@farcaster/miniapp-node": "^0.1.13",
37
- "@farcaster/miniapp-sdk": "^0.3.0",
38
- "@farcaster/miniapp-wagmi-connector": "^2.0.0",
39
37
  "@hono/node-server": "^1.19.12",
40
38
  "@open-wallet-standard/core": "^1.2.4",
41
39
  "@prisma/client": "^6.19.3",
42
- "@rainbow-me/rainbowkit": "^2.2.10",
43
40
  "@supabase/supabase-js": "^2.99.1",
44
- "@tailwindcss/typography": "^0.5.19",
45
- "@tailwindcss/vite": "^4.2.2",
46
- "@tanstack/react-query": "^5.90.21",
47
- "@types/ws": "^8.18.1",
48
- "@vercel/analytics": "^2.0.1",
49
- "@vitejs/plugin-react": "^4.7.0",
50
41
  "@xterm/addon-fit": "^0.11.0",
51
42
  "@xterm/addon-serialize": "^0.14.0",
52
43
  "@xterm/xterm": "^6.0.0",
53
44
  "dotenv": "^17.4.0",
54
45
  "hono": "^4.12.10",
55
- "next": "16.1.6",
56
46
  "node-pty": "^1.2.0-beta.12",
57
- "ox": "^0.14.8",
58
47
  "prisma": "^6.19.3",
59
48
  "react": "19.2.3",
60
49
  "react-dom": "19.2.3",
@@ -66,23 +55,35 @@
66
55
  "tsx": "^4.21.0",
67
56
  "viem": "^2.47.2",
68
57
  "vite": "^6.4.1",
69
- "wagmi": "^2.19.5",
70
58
  "ws": "^8.20.0"
71
59
  },
72
60
  "devDependencies": {
61
+ "@farcaster/miniapp-node": "^0.1.13",
62
+ "@farcaster/miniapp-sdk": "^0.3.0",
63
+ "@farcaster/miniapp-wagmi-connector": "^2.0.0",
73
64
  "@playwright/test": "^1.58.2",
65
+ "@rainbow-me/rainbowkit": "^2.2.10",
74
66
  "@tailwindcss/postcss": "^4",
67
+ "@tailwindcss/typography": "^0.5.19",
68
+ "@tailwindcss/vite": "^4.2.2",
69
+ "@tanstack/react-query": "^5.90.21",
75
70
  "@testing-library/jest-dom": "^6.9.1",
76
71
  "@testing-library/react": "^16.3.2",
77
72
  "@testing-library/user-event": "^14.6.1",
78
73
  "@types/node": "^20",
79
74
  "@types/react": "^19",
80
75
  "@types/react-dom": "^19",
76
+ "@types/ws": "^8.18.1",
77
+ "@vercel/analytics": "^2.0.1",
78
+ "@vitejs/plugin-react": "^4.7.0",
81
79
  "concurrently": "^9.2.1",
82
80
  "eslint": "^9",
83
81
  "eslint-config-next": "16.1.6",
84
82
  "jsdom": "^27.0.1",
83
+ "next": "16.1.6",
84
+ "ox": "^0.14.8",
85
85
  "typescript": "^5",
86
- "vitest": "^3.2.4"
86
+ "vitest": "^3.2.4",
87
+ "wagmi": "^2.19.5"
87
88
  }
88
89
  }