@syncar/server 1.0.0-alpha.1 → 1.0.0-alpha.2
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.
- package/README.md +157 -90
- package/dist/index.d.ts +66 -66
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +55 -55
package/package.json
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
2
|
+
"name": "@syncar/server",
|
|
3
|
+
"version": "1.0.0-alpha.2",
|
|
4
|
+
"description": "Node.js server for Syncar real-time synchronization",
|
|
5
|
+
"author": "M16BAPPI - [m16bappi@gmail.com]",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"module": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsup",
|
|
22
|
+
"dev": "tsup --watch",
|
|
23
|
+
"test": "vitest",
|
|
24
|
+
"test:ui": "vitest --ui",
|
|
25
|
+
"test:coverage": "vitest --coverage",
|
|
26
|
+
"prepublishOnly": "bun run build",
|
|
27
|
+
"docs": "typedoc --out docs src",
|
|
28
|
+
"docs:serve": "typedoc --out docs src && npx serve docs",
|
|
29
|
+
"docs:json": "typedoc --json docs/api.json src"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"ws": "^8.18.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@types/node": "^20.10.0",
|
|
36
|
+
"@types/ws": "^8.18.1",
|
|
37
|
+
"@vitest/coverage-v8": "^1.1.0",
|
|
38
|
+
"tsup": "^8.5.1",
|
|
39
|
+
"typescript": "^5",
|
|
40
|
+
"vitest": "^1.1.0"
|
|
41
|
+
},
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": ">=18.0.0"
|
|
44
|
+
},
|
|
45
|
+
"keywords": [
|
|
46
|
+
"websocket",
|
|
47
|
+
"realtime",
|
|
48
|
+
"server",
|
|
49
|
+
"syncar",
|
|
50
|
+
"pubsub",
|
|
51
|
+
"broadcast"
|
|
52
|
+
],
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"publishConfig": {
|
|
55
|
+
"access": "public"
|
|
14
56
|
}
|
|
15
|
-
|
|
16
|
-
"files": [
|
|
17
|
-
"dist",
|
|
18
|
-
"README.md"
|
|
19
|
-
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "tsup",
|
|
22
|
-
"dev": "tsup --watch",
|
|
23
|
-
"test": "vitest",
|
|
24
|
-
"test:ui": "vitest --ui",
|
|
25
|
-
"test:coverage": "vitest --coverage",
|
|
26
|
-
"prepublishOnly": "bun run build",
|
|
27
|
-
"docs": "typedoc --out docs src",
|
|
28
|
-
"docs:serve": "typedoc --out docs src && npx serve docs",
|
|
29
|
-
"docs:json": "typedoc --json docs/api.json src"
|
|
30
|
-
},
|
|
31
|
-
"dependencies": {
|
|
32
|
-
"ws": "^8.18.0"
|
|
33
|
-
},
|
|
34
|
-
"devDependencies": {
|
|
35
|
-
"@types/node": "^20.10.0",
|
|
36
|
-
"@types/ws": "^8.18.1",
|
|
37
|
-
"@vitest/coverage-v8": "^1.1.0",
|
|
38
|
-
"tsup": "^8.5.1",
|
|
39
|
-
"typescript": "^5",
|
|
40
|
-
"vitest": "^1.1.0"
|
|
41
|
-
},
|
|
42
|
-
"engines": {
|
|
43
|
-
"node": ">=18.0.0"
|
|
44
|
-
},
|
|
45
|
-
"keywords": [
|
|
46
|
-
"websocket",
|
|
47
|
-
"realtime",
|
|
48
|
-
"server",
|
|
49
|
-
"synca",
|
|
50
|
-
"pubsub",
|
|
51
|
-
"broadcast"
|
|
52
|
-
],
|
|
53
|
-
"license": "MIT",
|
|
54
|
-
"publishConfig": {
|
|
55
|
-
"access": "public"
|
|
56
|
-
}
|
|
57
|
-
}
|
|
57
|
+
}
|