dts-universal-report-module 1.0.16 → 1.1.0
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/README.md +652 -652
- package/dist/index.esm.js +6610 -6786
- package/dist/index.js +25 -25
- package/package.json +79 -79
package/package.json
CHANGED
|
@@ -1,79 +1,79 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dts-universal-report-module",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"type": "module",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"module": "dist/index.esm.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist"
|
|
10
|
-
],
|
|
11
|
-
"scripts": {
|
|
12
|
-
"dev": "vite",
|
|
13
|
-
"build": "vite build",
|
|
14
|
-
"build:app": "BUILD_TARGET=app vite build",
|
|
15
|
-
"preview": "vite preview",
|
|
16
|
-
"test": "echo \"No tests configured yet\"",
|
|
17
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
18
|
-
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
19
|
-
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
|
|
20
|
-
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
|
|
21
|
-
"prepare": "husky",
|
|
22
|
-
"type-check": "tsc --noEmit",
|
|
23
|
-
"type-check:watch": "tsc --noEmit --watch"
|
|
24
|
-
},
|
|
25
|
-
"lint-staged": {
|
|
26
|
-
"src/**/*.{ts,tsx}": [
|
|
27
|
-
"eslint --fix",
|
|
28
|
-
"prettier --write"
|
|
29
|
-
],
|
|
30
|
-
"src/**/*.css": [
|
|
31
|
-
"prettier --write"
|
|
32
|
-
]
|
|
33
|
-
},
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"@emotion/react": ">=11",
|
|
36
|
-
"@emotion/styled": ">=11",
|
|
37
|
-
"@mui/icons-material": "7.3.5",
|
|
38
|
-
"@mui/material": ">=5",
|
|
39
|
-
"react-dnd": "16.0.1",
|
|
40
|
-
"react-dnd-html5-backend": "16.0.1",
|
|
41
|
-
"typescript": "^6.0.3",
|
|
42
|
-
"xlsx": "^0.18.5"
|
|
43
|
-
},
|
|
44
|
-
"devDependencies": {
|
|
45
|
-
"@eslint/js": "^9.39.4",
|
|
46
|
-
"@types/node": "^25.9.1",
|
|
47
|
-
"@types/react": "^18.3.18",
|
|
48
|
-
"@types/react-dom": "^18.3.5",
|
|
49
|
-
"@typescript-eslint/eslint-plugin": "^8.60.0",
|
|
50
|
-
"@typescript-eslint/parser": "^8.60.0",
|
|
51
|
-
"@vitejs/plugin-react": "4.7.0",
|
|
52
|
-
"eslint": "^9.39.4",
|
|
53
|
-
"eslint-plugin-import": "^2.32.0",
|
|
54
|
-
"eslint-plugin-react": "^7.37.5",
|
|
55
|
-
"eslint-plugin-react-hooks": "^7.1.1",
|
|
56
|
-
"globals": "^17.6.0",
|
|
57
|
-
"husky": "^9.1.7",
|
|
58
|
-
"lint-staged": "^17.0.5",
|
|
59
|
-
"prettier": "^3.8.3",
|
|
60
|
-
"react": "^18.3.1",
|
|
61
|
-
"react-dom": "^18.3.1",
|
|
62
|
-
"vite": "^6.4.2"
|
|
63
|
-
},
|
|
64
|
-
"peerDependencies": {
|
|
65
|
-
"@emotion/react": ">=11",
|
|
66
|
-
"@emotion/styled": ">=11",
|
|
67
|
-
"@mui/material": ">=5",
|
|
68
|
-
"react": ">=18",
|
|
69
|
-
"react-dom": ">=18"
|
|
70
|
-
},
|
|
71
|
-
"peerDependenciesMeta": {
|
|
72
|
-
"react": {
|
|
73
|
-
"optional": true
|
|
74
|
-
},
|
|
75
|
-
"react-dom": {
|
|
76
|
-
"optional": true
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "dts-universal-report-module",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dev": "vite",
|
|
13
|
+
"build": "vite build",
|
|
14
|
+
"build:app": "BUILD_TARGET=app vite build",
|
|
15
|
+
"preview": "vite preview",
|
|
16
|
+
"test": "echo \"No tests configured yet\"",
|
|
17
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
18
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
19
|
+
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
|
|
20
|
+
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
|
|
21
|
+
"prepare": "husky",
|
|
22
|
+
"type-check": "tsc --noEmit",
|
|
23
|
+
"type-check:watch": "tsc --noEmit --watch"
|
|
24
|
+
},
|
|
25
|
+
"lint-staged": {
|
|
26
|
+
"src/**/*.{ts,tsx}": [
|
|
27
|
+
"eslint --fix",
|
|
28
|
+
"prettier --write"
|
|
29
|
+
],
|
|
30
|
+
"src/**/*.css": [
|
|
31
|
+
"prettier --write"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@emotion/react": ">=11",
|
|
36
|
+
"@emotion/styled": ">=11",
|
|
37
|
+
"@mui/icons-material": "7.3.5",
|
|
38
|
+
"@mui/material": ">=5",
|
|
39
|
+
"react-dnd": "16.0.1",
|
|
40
|
+
"react-dnd-html5-backend": "16.0.1",
|
|
41
|
+
"typescript": "^6.0.3",
|
|
42
|
+
"xlsx": "^0.18.5"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@eslint/js": "^9.39.4",
|
|
46
|
+
"@types/node": "^25.9.1",
|
|
47
|
+
"@types/react": "^18.3.18",
|
|
48
|
+
"@types/react-dom": "^18.3.5",
|
|
49
|
+
"@typescript-eslint/eslint-plugin": "^8.60.0",
|
|
50
|
+
"@typescript-eslint/parser": "^8.60.0",
|
|
51
|
+
"@vitejs/plugin-react": "4.7.0",
|
|
52
|
+
"eslint": "^9.39.4",
|
|
53
|
+
"eslint-plugin-import": "^2.32.0",
|
|
54
|
+
"eslint-plugin-react": "^7.37.5",
|
|
55
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
56
|
+
"globals": "^17.6.0",
|
|
57
|
+
"husky": "^9.1.7",
|
|
58
|
+
"lint-staged": "^17.0.5",
|
|
59
|
+
"prettier": "^3.8.3",
|
|
60
|
+
"react": "^18.3.1",
|
|
61
|
+
"react-dom": "^18.3.1",
|
|
62
|
+
"vite": "^6.4.2"
|
|
63
|
+
},
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"@emotion/react": ">=11",
|
|
66
|
+
"@emotion/styled": ">=11",
|
|
67
|
+
"@mui/material": ">=5",
|
|
68
|
+
"react": ">=18",
|
|
69
|
+
"react-dom": ">=18"
|
|
70
|
+
},
|
|
71
|
+
"peerDependenciesMeta": {
|
|
72
|
+
"react": {
|
|
73
|
+
"optional": true
|
|
74
|
+
},
|
|
75
|
+
"react-dom": {
|
|
76
|
+
"optional": true
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|