wapi-client 0.9.1 → 0.9.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/dist/api/ws-client.cjs +1 -1
- package/dist/api/ws-client.d.ts +0 -1
- package/dist/api/ws-client.js +1 -1
- package/dist/client.cjs +1 -1
- package/dist/client.js +1 -1
- package/dist/fns/import-data/import-data.cjs +22 -0
- package/dist/fns/import-data/import-data.js +22 -0
- package/dist/fns/import-data/import-data.node.browser.cjs +22 -0
- package/dist/fns/import-data/import-data.node.browser.js +22 -0
- package/dist/fns/import-data/import-data.node.cjs +22 -0
- package/dist/fns/import-data/import-data.node.js +22 -0
- package/dist/lib/errors.d.ts +1 -1
- package/dist/lib/isomorphic/node/fetch.cjs +20 -17
- package/dist/lib/isomorphic/node/fetch.js +20 -17
- package/dist/lib/isomorphic/node/streams.d.ts +0 -2
- package/dist/lib/validator.browser.cjs +611 -960
- package/dist/lib/validator.browser.js +611 -960
- package/dist/lib/validator.cjs +1 -1
- package/dist/lib/validator.js +1 -1
- package/dist/lib/ws-types.d.ts +0 -1
- package/dist/types/index.d.ts +1 -4
- package/dist/wapi-client-web.iife.js +6 -11
- package/dist/wapi-client.iife.js +6 -11
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wapi-client",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"browser": {
|
|
21
21
|
"types": "./dist/types/index.d.ts",
|
|
22
22
|
"import": "./dist/index.browser.js",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
23
|
+
"require": "./dist/index.browser.cjs",
|
|
24
|
+
"default": "./dist/index.browser.js"
|
|
25
25
|
},
|
|
26
26
|
"types": "./dist/types/index.d.ts",
|
|
27
27
|
"default": "./dist/index.cjs"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"build-web-cjs": "npm run switch:web && esbuild \"./src/**/*.ts\" --target=es6 --outdir=./dist/ --format=cjs --bundle \"--external:./src/*\" --out-extension:.js=.browser.cjs && npm run switch:node",
|
|
38
38
|
"build-web-esm": "npm run switch:web && esbuild \"./src/**/*.ts\" --target=es6 --outdir=./dist/ --format=esm --bundle \"--external:./src/*\" --out-extension:.js=.browser.js && npm run switch:node",
|
|
39
39
|
"build-web-iife": "npm run switch:web && esbuild ./src/index.ts --bundle --outfile=./dist/wapi-client.iife.js --format=iife --target=es6 --global-name=WAPI --minify && npm run switch:node",
|
|
40
|
-
"build-declaration": "tsc --declaration --emitDeclarationOnly --rootDir src --outFile ./dist/types/index.d.ts && node build-postprocess.mjs && tsc --declaration --emitDeclarationOnly --rootDir src --outDir ./dist/",
|
|
40
|
+
"build-declaration": "tsc --declaration --emitDeclarationOnly --skipLibCheck --rootDir src --outFile ./dist/types/index.d.ts && node build-postprocess.mjs && tsc --declaration --emitDeclarationOnly --skipLibCheck --rootDir src --outDir ./dist/",
|
|
41
41
|
"remove-dist": "rm -rf ./dist && rm -rf ./docs",
|
|
42
42
|
"prepublishOnly": "npm run remove-dist && npm run build && npm run build-declaration",
|
|
43
43
|
"postpublish": "node postpublish.mjs",
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"@types/papaparse": "^5.3.14",
|
|
53
53
|
"@types/uuid": "^9.0.8",
|
|
54
54
|
"@types/ws": "^8.5.10",
|
|
55
|
-
"esbuild": "^0.
|
|
55
|
+
"esbuild": "^0.23.1",
|
|
56
56
|
"schema-utils": "^4.2.0",
|
|
57
|
-
"typedoc": "^0.
|
|
58
|
-
"typescript": "^5.4
|
|
57
|
+
"typedoc": "^0.26.6",
|
|
58
|
+
"typescript": "^5.5.4"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"ajv": "^8.13.0",
|