polyv-live-api-sdk 1.0.11 → 1.0.12
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/LICENSE +21 -0
- package/dist/index.cjs +13 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +288 -33
- package/dist/index.js +13 -9
- package/dist/index.js.map +1 -1
- package/dist/services/v4/channel.service.d.ts.map +1 -1
- package/dist/types/v4-channel.d.ts +288 -33
- package/dist/types/v4-channel.d.ts.map +1 -1
- package/package.json +16 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "polyv-live-api-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "PolyV Live API SDK for TypeScript/Node.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -24,21 +24,6 @@
|
|
|
24
24
|
},
|
|
25
25
|
"main": "./dist/index.js",
|
|
26
26
|
"types": "./dist/index.d.ts",
|
|
27
|
-
"scripts": {
|
|
28
|
-
"prebuild": "tsx scripts/generate-types.ts",
|
|
29
|
-
"build": "tsup && tsc --emitDeclarationOnly --declarationMap",
|
|
30
|
-
"docs": "typedoc",
|
|
31
|
-
"test": "vitest run",
|
|
32
|
-
"test:watch": "vitest",
|
|
33
|
-
"test:coverage": "vitest run --coverage",
|
|
34
|
-
"test:unit": "vitest run --config vitest.config.ts",
|
|
35
|
-
"test:unit:watch": "vitest --config vitest.config.ts",
|
|
36
|
-
"test:integration": "vitest run --config vitest.config.integration.ts",
|
|
37
|
-
"test:integration:watch": "vitest --config vitest.config.integration.ts",
|
|
38
|
-
"cleanup:test-channels": "tsx scripts/cleanup-test-channels.ts",
|
|
39
|
-
"prepublishOnly": "pnpm test:unit && pnpm build",
|
|
40
|
-
"publish:sdk": "npm publish --access public"
|
|
41
|
-
},
|
|
42
27
|
"keywords": [
|
|
43
28
|
"polyv",
|
|
44
29
|
"live",
|
|
@@ -75,5 +60,19 @@
|
|
|
75
60
|
"typedoc": "^0.28.17",
|
|
76
61
|
"typescript": "^5.3.3",
|
|
77
62
|
"vitest": "^1.2.0"
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"prebuild": "tsx scripts/generate-types.ts",
|
|
66
|
+
"build": "tsup && tsc --emitDeclarationOnly --declarationMap",
|
|
67
|
+
"docs": "typedoc",
|
|
68
|
+
"test": "vitest run",
|
|
69
|
+
"test:watch": "vitest",
|
|
70
|
+
"test:coverage": "vitest run --coverage",
|
|
71
|
+
"test:unit": "vitest run --config vitest.config.ts",
|
|
72
|
+
"test:unit:watch": "vitest --config vitest.config.ts",
|
|
73
|
+
"test:integration": "vitest run --config vitest.config.integration.ts",
|
|
74
|
+
"test:integration:watch": "vitest --config vitest.config.integration.ts",
|
|
75
|
+
"cleanup:test-channels": "tsx scripts/cleanup-test-channels.ts",
|
|
76
|
+
"publish:sdk": "npm publish --access public"
|
|
78
77
|
}
|
|
79
|
-
}
|
|
78
|
+
}
|