@dashadmin/dash-interfaces 1.3.26 → 1.3.28

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.
Files changed (2) hide show
  1. package/README.md +30 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -0,0 +1,30 @@
1
+ # @dashadmin/dash-interfaces
2
+
3
+ > Shared TypeScript interfaces and domain types.
4
+
5
+ ## Overview
6
+
7
+ Central type definitions (e.g. `IClient`, `IPackage`, `ITag`, delivery and tracking types) shared across packages to keep contracts consistent.
8
+
9
+ ## Key exports & features
10
+
11
+ - Domain interfaces (`IClient`, `IPackage`, `ITag`, …)
12
+ - Type-only package (no runtime code)
13
+
14
+ ## Installation
15
+
16
+ ```bash
17
+ # From the public npm registry
18
+ npm install @dashadmin/dash-interfaces
19
+
20
+ # Or the local Verdaccio registry (unscoped)
21
+ npm install dash-interfaces --registry http://localhost:4873
22
+ ```
23
+
24
+ ## Development & publishing
25
+
26
+ This package is part of the **dash-frontend-core** monorepo. See [`DEVELOPMENT.md`](../../DEVELOPMENT.md) for the source-modification workflow, local Verdaccio publishing, npm publishing and version-bump policy.
27
+
28
+ ---
29
+
30
+ _Part of the [Dash Framework](https://www.npmjs.com/org/dashadmin) · `@dashadmin` scope._
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dashadmin/dash-interfaces",
3
- "version": "1.3.26",
3
+ "version": "1.3.28",
4
4
  "main": "dist/index.cjs",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -40,6 +40,7 @@
40
40
  "eslint-config-airbnb": "latest",
41
41
  "eslint-config-airbnb-typescript": "latest",
42
42
  "eslint-config-prettier": "latest",
43
+ "@dashadmin/dash-eslint": "workspace:*",
43
44
  "eslint-import-resolver-typescript": "latest",
44
45
  "eslint-plugin-html": "latest",
45
46
  "eslint-plugin-import": "latest",
@@ -49,6 +50,7 @@
49
50
  "eslint-plugin-prettier": "latest",
50
51
  "eslint-plugin-react": "latest",
51
52
  "eslint-plugin-react-hooks": "latest",
53
+ "@dashadmin/dash-prettier": "workspace:*",
52
54
  "query-string": "latest",
53
55
  "react-dom": "latest",
54
56
  "rollup": "latest",
@@ -60,12 +62,10 @@
60
62
  "rollup-plugin-postcss": "latest",
61
63
  "rollup-plugin-sourcemaps": "latest",
62
64
  "rollup-plugin-typescript2": "latest",
65
+ "@dashadmin/dash-tsconfig": "workspace:*",
63
66
  "tsc": "latest",
64
67
  "tsc-alias": "latest",
65
- "typescript": "latest",
66
- "@dashadmin/dash-eslint": "workspace:*",
67
- "@dashadmin/dash-prettier": "workspace:*",
68
- "@dashadmin/dash-tsconfig": "workspace:*"
68
+ "typescript": "latest"
69
69
  },
70
70
  "peerDependencies": {
71
71
  "react": "latest"