@nevuamarkets/poly-websockets 0.0.2 → 0.0.3

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/README.md +2 -0
  2. package/package.json +7 -3
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  A TypeScript library for real-time Polymarket WebSocket price alerts with automatic connection management and intelligent reconnection handling.
4
4
 
5
+ Powering [Nevua Markets](https://nevua.markets)
6
+
5
7
  ## Installation
6
8
 
7
9
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nevuamarkets/poly-websockets",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Plug-and-play Polymarket WebSocket price alerts",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,7 +10,7 @@
10
10
  ],
11
11
  "scripts": {
12
12
  "build": "tsc",
13
- "prepare": "npm run build",
13
+ "prepare": "npm run build && npm run test",
14
14
  "test": "vitest run"
15
15
  },
16
16
  "repository": {
@@ -19,10 +19,14 @@
19
19
  },
20
20
  "keywords": [
21
21
  "polymarket",
22
+ "polymarket-api",
22
23
  "websocket",
23
24
  "price",
24
25
  "market",
25
- "alerts"
26
+ "alerts",
27
+ "real-time",
28
+ "trading",
29
+ "prediction-markets"
26
30
  ],
27
31
  "author": "Konstantinos Lekkas",
28
32
  "license": "AGPL-3.0",