@gamention/pulse-core 0.1.6 → 0.1.7

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 (1) hide show
  1. package/package.json +19 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gamention/pulse-core",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Core client SDK for Pulse — WebSocket connection, state management, and API for real-time collaboration",
5
5
  "type": "module",
6
6
  "main": "./dist/pulse-core.cjs",
@@ -13,13 +13,17 @@
13
13
  "types": "./dist/index.d.ts"
14
14
  }
15
15
  },
16
- "files": ["dist"],
17
- "scripts": {
18
- "build": "vite build",
19
- "dev": "vite build --watch",
20
- "clean": "rm -rf dist"
21
- },
22
- "keywords": ["pulse", "collaboration", "realtime", "websocket", "client", "sdk"],
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "keywords": [
20
+ "pulse",
21
+ "collaboration",
22
+ "realtime",
23
+ "websocket",
24
+ "client",
25
+ "sdk"
26
+ ],
23
27
  "author": "Krishna Thorat <krishnathorat007@gmail.com>",
24
28
  "license": "MIT",
25
29
  "repository": {
@@ -32,11 +36,16 @@
32
36
  "access": "public"
33
37
  },
34
38
  "dependencies": {
35
- "@gamention/pulse-shared": "workspace:*"
39
+ "@gamention/pulse-shared": "0.1.7"
36
40
  },
37
41
  "devDependencies": {
38
42
  "typescript": "^5.7.0",
39
43
  "vite": "^6.0.0",
40
44
  "vite-plugin-dts": "^4.3.0"
45
+ },
46
+ "scripts": {
47
+ "build": "vite build",
48
+ "dev": "vite build --watch",
49
+ "clean": "rm -rf dist"
41
50
  }
42
- }
51
+ }