@pixotope/socket.io-client 0.3.0 → 0.5.0
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/.turbo/turbo-build.log +11 -7
- package/.turbo/turbo-check-types.log +1 -1
- package/CHANGELOG.md +12 -0
- package/README.md +24 -0
- package/dist/index.cjs +3 -8296
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -8303
- package/package.json +6 -4
- package/src/index.ts +1 -0
- package/tsconfig.json +4 -4
- package/typedoc.json +4 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pixotope/socket.io-client",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "Pinned re-export of socket.io-client for Pixotope Foundation",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -9,12 +9,14 @@
|
|
|
9
9
|
"type": "module",
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"@types/node": "^22.10.2",
|
|
12
|
-
"socket.io-client": "^4.8.1",
|
|
13
12
|
"tsup": "^8.5.0",
|
|
14
13
|
"typescript": "^5.7.2"
|
|
15
14
|
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"socket.io-client": "^4.8.1"
|
|
17
|
+
},
|
|
16
18
|
"scripts": {
|
|
17
|
-
"build": "tsup src/index.ts --format cjs,esm",
|
|
19
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
18
20
|
"check-types": "tsc --noEmit"
|
|
19
21
|
}
|
|
20
22
|
}
|
package/src/index.ts
CHANGED
package/tsconfig.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"baseUrl": "./src",
|
|
4
4
|
"rootDir": "./src",
|
|
5
|
-
"target": "
|
|
6
|
-
"module": "
|
|
5
|
+
"target": "ESNext",
|
|
6
|
+
"module": "ESNext",
|
|
7
7
|
"types": ["node"],
|
|
8
|
-
"lib": ["
|
|
8
|
+
"lib": ["ESNext"],
|
|
9
9
|
"allowJs": true,
|
|
10
10
|
"allowSyntheticDefaultImports": true,
|
|
11
11
|
"useDefineForClassFields": true,
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"skipLibCheck": true,
|
|
14
14
|
"sourceMap": true,
|
|
15
15
|
"isolatedModules": true,
|
|
16
|
-
"moduleResolution": "bundler",
|
|
17
16
|
"esModuleInterop": true,
|
|
18
17
|
"noEmit": true,
|
|
18
|
+
"moduleResolution": "bundler",
|
|
19
19
|
"noUnusedLocals": false,
|
|
20
20
|
"noUnusedParameters": false,
|
|
21
21
|
"noImplicitReturns": false,
|
package/typedoc.json
ADDED