@sdkwork/sdk-common 1.0.0 → 1.0.1
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 +17 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sdkwork/sdk-common",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "SDKwork SDK Common - High cohesion, low coupling SDK foundation library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -8,34 +8,34 @@
|
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
11
12
|
"import": "./dist/index.js",
|
|
12
|
-
"require": "./dist/index.cjs"
|
|
13
|
-
"types": "./dist/index.d.ts"
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
14
|
},
|
|
15
15
|
"./core": {
|
|
16
|
+
"types": "./dist/core/index.d.ts",
|
|
16
17
|
"import": "./dist/core/index.js",
|
|
17
|
-
"require": "./dist/core/index.cjs"
|
|
18
|
-
"types": "./dist/core/index.d.ts"
|
|
18
|
+
"require": "./dist/core/index.cjs"
|
|
19
19
|
},
|
|
20
20
|
"./auth": {
|
|
21
|
+
"types": "./dist/auth/index.d.ts",
|
|
21
22
|
"import": "./dist/auth/index.js",
|
|
22
|
-
"require": "./dist/auth/index.cjs"
|
|
23
|
-
"types": "./dist/auth/index.d.ts"
|
|
23
|
+
"require": "./dist/auth/index.cjs"
|
|
24
24
|
},
|
|
25
25
|
"./http": {
|
|
26
|
+
"types": "./dist/http/index.d.ts",
|
|
26
27
|
"import": "./dist/http/index.js",
|
|
27
|
-
"require": "./dist/http/index.cjs"
|
|
28
|
-
"types": "./dist/http/index.d.ts"
|
|
28
|
+
"require": "./dist/http/index.cjs"
|
|
29
29
|
},
|
|
30
30
|
"./errors": {
|
|
31
|
+
"types": "./dist/errors/index.d.ts",
|
|
31
32
|
"import": "./dist/errors/index.js",
|
|
32
|
-
"require": "./dist/errors/index.cjs"
|
|
33
|
-
"types": "./dist/errors/index.d.ts"
|
|
33
|
+
"require": "./dist/errors/index.cjs"
|
|
34
34
|
},
|
|
35
35
|
"./utils": {
|
|
36
|
+
"types": "./dist/utils/index.d.ts",
|
|
36
37
|
"import": "./dist/utils/index.js",
|
|
37
|
-
"require": "./dist/utils/index.cjs"
|
|
38
|
-
"types": "./dist/utils/index.d.ts"
|
|
38
|
+
"require": "./dist/utils/index.cjs"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"files": [
|
|
@@ -48,8 +48,9 @@
|
|
|
48
48
|
"typecheck": "tsc --noEmit",
|
|
49
49
|
"lint": "eslint src --ext .ts,.tsx",
|
|
50
50
|
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
51
|
-
"clean": "
|
|
52
|
-
"prepublishOnly": "npm run clean && npm run build"
|
|
51
|
+
"clean": "node -e \"require('node:fs').rmSync('dist',{ recursive:true, force:true })\"",
|
|
52
|
+
"prepublishOnly": "npm run clean && npm run build",
|
|
53
|
+
"publish:public": "npm publish --access public --registry=https://registry.npmjs.org"
|
|
53
54
|
},
|
|
54
55
|
"keywords": [
|
|
55
56
|
"sdkwork",
|
|
@@ -75,6 +76,6 @@
|
|
|
75
76
|
},
|
|
76
77
|
"repository": {
|
|
77
78
|
"type": "git",
|
|
78
|
-
"url": "https://github.com/sdkwork/sdk-common-typescript"
|
|
79
|
+
"url": "git+https://github.com/sdkwork/sdk-common-typescript.git"
|
|
79
80
|
}
|
|
80
81
|
}
|