@dashadmin/dash-constants 1.0.0 → 1.3.17

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 CHANGED
@@ -1,30 +1,49 @@
1
1
  {
2
2
  "name": "@dashadmin/dash-constants",
3
- "version": "1.0.0",
4
- "description": "dash-constants — DASH framework package",
3
+ "version": "1.3.17",
4
+ "private": false,
5
5
  "license": "MIT",
6
- "author": "Francisco Aranda <farandal@gmail.com>",
7
- "type": "module",
8
- "main": "index.js",
9
- "module": "index.js",
10
- "types": "index.d.ts",
11
- "exports": {
12
- ".": {
13
- "types": "./index.d.ts",
14
- "import": "./index.js"
15
- }
6
+ "main": "src/index.ts",
7
+ "devDependencies": {
8
+ "@commitlint/cli": "latest",
9
+ "@commitlint/config-conventional": "latest",
10
+ "@types/jest": "latest",
11
+ "@types/node": "latest",
12
+ "@types/react": "latest",
13
+ "@types/react-dom": "latest",
14
+ "@typescript-eslint/eslint-plugin": "latest",
15
+ "@typescript-eslint/parser": "latest",
16
+ "eslint-config-airbnb-typescript": "latest",
17
+ "eslint-config-prettier": "latest",
18
+ "eslint-plugin-html": "latest",
19
+ "eslint-plugin-import": "latest",
20
+ "eslint-plugin-jsdoc": "latest",
21
+ "eslint-plugin-json": "latest",
22
+ "eslint-plugin-prettier": "latest",
23
+ "ts-jest": "latest",
24
+ "ts-loader": "latest",
25
+ "tsconfig-paths": "latest",
26
+ "typescript": "latest",
27
+ "vite": "^5.2.0",
28
+ "rollup": "^4.0.0"
16
29
  },
17
- "files": [
18
- "**/*"
19
- ],
20
- "sideEffects": false,
21
30
  "dependencies": {
22
31
  "@mui/material": "^7.3.10"
23
32
  },
24
33
  "publishConfig": {
25
- "access": "public"
34
+ "name": "@dashadmin/dash-constants",
35
+ "access": "public",
36
+ "main": "dist/index.js",
37
+ "exports": {
38
+ ".": {
39
+ "import": "./dist/index.js"
40
+ }
41
+ }
26
42
  },
27
- "engines": {
28
- "node": ">=18"
29
- }
43
+ "scripts": {
44
+ "build": "vite build"
45
+ },
46
+ "files": [
47
+ "dist"
48
+ ]
30
49
  }
package/src/index.ts ADDED
@@ -0,0 +1,5 @@
1
+ export {default as DASHAdminSystemConstants} from './DASHAdminSystemConstants';
2
+ export {default as DASHAppConstants} from './DASHAppConstants';
3
+ export type { IDASHAppConstants } from './DASHAppConstants';
4
+ export type {IDASHAdminSystemConstants} from './DASHAdminSystemConstants';
5
+ export {getEnv} from './DASHAdminSystemConstants';
package/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- // Auto-generated permissive types for @dashadmin/dash-constants.
2
- // Full typings can be regenerated with a tolerant tsc emit.
3
- export {};
File without changes