@dashadmin/dash-interfaces 1.3.20 → 1.3.22
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 +19 -28
- package/src/index.tsx +0 -10
package/package.json
CHANGED
|
@@ -1,18 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dashadmin/dash-interfaces",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.22",
|
|
4
4
|
"private": false,
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"lint": "eslint --ext .ts,.tsx .",
|
|
9
|
-
"format": "pnpm prettier --write . && pnpm format-check && pnpm lint",
|
|
10
|
-
"lint:check": "pnpm prettier --check .",
|
|
11
|
-
"lint:fix": "pnpm prettier --write .",
|
|
12
|
-
"check-updates": "pnpm npm-check-updates",
|
|
13
|
-
"updates-packages": "pnpm npm-check-updates -u",
|
|
14
|
-
"build": "rm -rf dist && node ../dash-build/compile.mjs && vite build"
|
|
15
|
-
},
|
|
16
7
|
"browserslist": {
|
|
17
8
|
"production": [
|
|
18
9
|
">0.2%",
|
|
@@ -41,7 +32,6 @@
|
|
|
41
32
|
"eslint-config-airbnb": "latest",
|
|
42
33
|
"eslint-config-airbnb-typescript": "latest",
|
|
43
34
|
"eslint-config-prettier": "latest",
|
|
44
|
-
"@dashadmin/dash-eslint": "workspace:*",
|
|
45
35
|
"eslint-import-resolver-typescript": "latest",
|
|
46
36
|
"eslint-plugin-html": "latest",
|
|
47
37
|
"eslint-plugin-import": "latest",
|
|
@@ -51,7 +41,6 @@
|
|
|
51
41
|
"eslint-plugin-prettier": "latest",
|
|
52
42
|
"eslint-plugin-react": "latest",
|
|
53
43
|
"eslint-plugin-react-hooks": "latest",
|
|
54
|
-
"@dashadmin/dash-prettier": "workspace:*",
|
|
55
44
|
"query-string": "latest",
|
|
56
45
|
"react-dom": "latest",
|
|
57
46
|
"rollup": "latest",
|
|
@@ -63,10 +52,12 @@
|
|
|
63
52
|
"rollup-plugin-postcss": "latest",
|
|
64
53
|
"rollup-plugin-sourcemaps": "latest",
|
|
65
54
|
"rollup-plugin-typescript2": "latest",
|
|
66
|
-
"@dashadmin/dash-tsconfig": "workspace:*",
|
|
67
55
|
"tsc-alias": "latest",
|
|
68
56
|
"typescript": "latest",
|
|
69
|
-
"vite": "^5.2.0"
|
|
57
|
+
"vite": "^5.2.0",
|
|
58
|
+
"@dashadmin/dash-eslint": "1.3.22",
|
|
59
|
+
"@dashadmin/dash-prettier": "1.3.22",
|
|
60
|
+
"@dashadmin/dash-tsconfig": "1.3.22"
|
|
70
61
|
},
|
|
71
62
|
"peerDependencies": {
|
|
72
63
|
"react": "latest"
|
|
@@ -79,26 +70,26 @@
|
|
|
79
70
|
},
|
|
80
71
|
"publishConfig": {
|
|
81
72
|
"name": "@dashadmin/dash-interfaces",
|
|
82
|
-
"access": "public"
|
|
83
|
-
"main": "dist/index.js",
|
|
84
|
-
"exports": {
|
|
85
|
-
".": {
|
|
86
|
-
"import": "./dist/index.js"
|
|
87
|
-
},
|
|
88
|
-
"./src/*": {
|
|
89
|
-
"import": "./dist/*.js"
|
|
90
|
-
}
|
|
91
|
-
}
|
|
73
|
+
"access": "public"
|
|
92
74
|
},
|
|
93
75
|
"files": [
|
|
94
76
|
"dist"
|
|
95
77
|
],
|
|
96
78
|
"exports": {
|
|
97
79
|
".": {
|
|
98
|
-
"import": "./
|
|
80
|
+
"import": "./dist/index.js"
|
|
99
81
|
},
|
|
100
82
|
"./src/*": {
|
|
101
|
-
"import": "./
|
|
83
|
+
"import": "./dist/*.js"
|
|
102
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"scripts": {
|
|
87
|
+
"lint": "eslint --ext .ts,.tsx .",
|
|
88
|
+
"format": "pnpm prettier --write . && pnpm format-check && pnpm lint",
|
|
89
|
+
"lint:check": "pnpm prettier --check .",
|
|
90
|
+
"lint:fix": "pnpm prettier --write .",
|
|
91
|
+
"check-updates": "pnpm npm-check-updates",
|
|
92
|
+
"updates-packages": "pnpm npm-check-updates -u",
|
|
93
|
+
"build": "rm -rf dist && node ../dash-build/compile.mjs && vite build"
|
|
103
94
|
}
|
|
104
|
-
}
|
|
95
|
+
}
|
package/src/index.tsx
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export type { IClient } from './interfaces/IClient';
|
|
2
|
-
export type { IDeliveryCommune } from './interfaces/IDeliveryCommune';
|
|
3
|
-
export type { ILogisticCenter } from './interfaces/ILogisticCenter';
|
|
4
|
-
export type { IMercadoLibreStatus } from './interfaces/IMercadoLibreStatus';
|
|
5
|
-
export type { IPackage } from './interfaces/IPackage';
|
|
6
|
-
export type { IPackageInternalStatus } from './interfaces/IPackageInternalStatus';
|
|
7
|
-
export type { ITag } from './interfaces/ITag';
|
|
8
|
-
export type { ITrackingErrorResponse } from './interfaces/ITrackingErrorResponse';
|
|
9
|
-
export type { IPackagePayload } from './interfaces/IPackagePayload';
|
|
10
|
-
export type { IHistoryPackage } from './interfaces/IHistoryPackage';
|