idmission-web-sdk 2.1.11 → 2.1.13
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/lib/models/DocumentDetection.d.ts +1 -1
- package/dist/sdk2.cjs.development.js +3 -3
- package/dist/sdk2.cjs.development.js.map +1 -1
- package/dist/sdk2.cjs.production.js +1 -1
- package/dist/sdk2.cjs.production.js.map +1 -1
- package/dist/sdk2.esm.js +3 -3
- package/dist/sdk2.esm.js.map +1 -1
- package/dist/sdk2.umd.development.js +3 -3
- package/dist/sdk2.umd.development.js.map +1 -1
- package/dist/sdk2.umd.production.js +1 -1
- package/dist/sdk2.umd.production.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +5 -1
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const webSdkVersion = "2.1.
|
|
1
|
+
export declare const webSdkVersion = "2.1.13";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "idmission-web-sdk",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.13",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/sdk2.esm.js",
|
|
@@ -9,16 +9,19 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"dist"
|
|
11
11
|
],
|
|
12
|
+
"packageManager": "npm@10.2.4",
|
|
12
13
|
"scripts": {
|
|
13
14
|
"build": "run-s clean compile bundle",
|
|
14
15
|
"bundle": "rollup -c",
|
|
15
16
|
"check:format": "prettier --list-different \"**/*.{js,ts,tsx}\"",
|
|
16
17
|
"check:types": "tsc --noEmit",
|
|
18
|
+
"check-types": "tsc --noEmit",
|
|
17
19
|
"clean": "run-p clean:*",
|
|
18
20
|
"clean:compiled": "shx rm -rf compiled",
|
|
19
21
|
"clean:coverage": "shx rm -rf coverage",
|
|
20
22
|
"clean:dist": "shx rm -rf dist",
|
|
21
23
|
"compile": "tsc -p tsconfig.base.json",
|
|
24
|
+
"dev": "storybook dev -p 6006 --ci --host $TAILSCALE_HOST --https --ssl-cert $TAILSCALE_SSL_CERT --ssl-key $TAILSCALE_SSL_KEY",
|
|
22
25
|
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
|
|
23
26
|
"lint": "eslint ./src --ext .js,.ts,.tsx",
|
|
24
27
|
"postbundle": "npm run clean:compiled && shx cp ./index.js ./dist/index.js",
|
|
@@ -124,6 +127,7 @@
|
|
|
124
127
|
"storybook": "^8.1.9",
|
|
125
128
|
"tanem-scripts": "7.0.0",
|
|
126
129
|
"ts-jest": "29.1.0",
|
|
130
|
+
"turbo": "^2.0.11",
|
|
127
131
|
"typescript": "^5.0.4"
|
|
128
132
|
}
|
|
129
133
|
}
|