@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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixotope/socket.io-client",
3
- "version": "0.3.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
@@ -1 +1,2 @@
1
+ /** Re-exports the pinned `socket.io-client` client for use across Pixotope Foundation packages. */
1
2
  export * from "socket.io-client";
package/tsconfig.json CHANGED
@@ -2,10 +2,10 @@
2
2
  "compilerOptions": {
3
3
  "baseUrl": "./src",
4
4
  "rootDir": "./src",
5
- "target": "es6",
6
- "module": "es6",
5
+ "target": "ESNext",
6
+ "module": "ESNext",
7
7
  "types": ["node"],
8
- "lib": ["es6"],
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
@@ -0,0 +1,4 @@
1
+ {
2
+ "entryPoints": ["src/index.ts"],
3
+ "excludeExternals": true
4
+ }