@gary121/sistent 0.14.11
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/LICENSE +201 -0
- package/README.md +115 -0
- package/dist/index.d.mts +4472 -0
- package/dist/index.d.ts +4472 -0
- package/dist/index.js +228 -0
- package/dist/index.mjs +228 -0
- package/package.json +125 -0
package/package.json
ADDED
@@ -0,0 +1,125 @@
|
|
1
|
+
{
|
2
|
+
"name": "@gary121/sistent",
|
3
|
+
"version": "0.14.11",
|
4
|
+
"description": "Reusable React Components and SVG Icons library",
|
5
|
+
"repository": {
|
6
|
+
"type": "git",
|
7
|
+
"url": "git+ssh://git@github.com/layer5io/sistent.git"
|
8
|
+
},
|
9
|
+
"main": "./dist/index.js",
|
10
|
+
"module": "./dist/index..js",
|
11
|
+
"types": "./dist/index.d.ts",
|
12
|
+
"files": [
|
13
|
+
"dist"
|
14
|
+
],
|
15
|
+
"scripts": {
|
16
|
+
"build": "NODE_ENV=production tsup",
|
17
|
+
"build:watch": "NODE_ENV=production tsup --watch",
|
18
|
+
"commitlint": "commitlint --edit",
|
19
|
+
"coverage": "jest --coverage",
|
20
|
+
"dev": "NODE_ENV=development tsup",
|
21
|
+
"format:check": "prettier --check \"**/*.{ts,tsx,md}\" --config ./.prettierrc",
|
22
|
+
"format:write": "prettier --write \"**/*.{ts,tsx,md}\" --config ./.prettierrc",
|
23
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
24
|
+
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
|
25
|
+
"prepare": "husky install",
|
26
|
+
"test": "jest",
|
27
|
+
"versionup:major": "npm version major",
|
28
|
+
"versionup:minor": "npm version minor",
|
29
|
+
"versionup:patch": "npm version patch"
|
30
|
+
},
|
31
|
+
"lint-staged": {
|
32
|
+
"*.{ts,tsx,md}": [
|
33
|
+
"prettier --write",
|
34
|
+
"eslint --fix"
|
35
|
+
]
|
36
|
+
},
|
37
|
+
"config": {
|
38
|
+
"commitizen": {
|
39
|
+
"path": "./node_modules/cz-conventional-changelog"
|
40
|
+
}
|
41
|
+
},
|
42
|
+
"devDependencies": {
|
43
|
+
"@commitlint/cli": "^17.7.2",
|
44
|
+
"@commitlint/config-conventional": "^17.7.0",
|
45
|
+
"@mui/icons-material": "^5.15.11",
|
46
|
+
"@reduxjs/toolkit": "^2.2.5",
|
47
|
+
"@testing-library/react": "^14.1.2",
|
48
|
+
"@types/jest": "^29.5.11",
|
49
|
+
"@types/lodash": "^4.17.7",
|
50
|
+
"@types/react": "^18.2.45",
|
51
|
+
"@types/react-dom": "^18.2.18",
|
52
|
+
"@types/react-redux": "^7.1.33",
|
53
|
+
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
54
|
+
"@typescript-eslint/parser": "^6.12.0",
|
55
|
+
"commitizen": "^4.3.0",
|
56
|
+
"cz-conventional-changelog": "^3.3.0",
|
57
|
+
"eslint": "^8.49.0",
|
58
|
+
"eslint-plugin-react": "^7.33.2",
|
59
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
60
|
+
"eslint-plugin-react-refresh": "^0.4.4",
|
61
|
+
"eslint-plugin-storybook": "^0.6.15",
|
62
|
+
"husky": "^8.0.0",
|
63
|
+
"jest": "^29.7.0",
|
64
|
+
"jest-environment-jsdom": "^29.7.0",
|
65
|
+
"lint-staged": "^14.0.1",
|
66
|
+
"mui-datatables": "^4.3.0",
|
67
|
+
"notistack": "^3.0.1",
|
68
|
+
"prettier": "^3.0.3",
|
69
|
+
"prettier-plugin-organize-imports": "^3.2.3",
|
70
|
+
"react-error-boundary": "^4.0.12",
|
71
|
+
"react-markdown": "^8.0.7",
|
72
|
+
"react-redux": "^8.1.1",
|
73
|
+
"redux": "^5.0.1",
|
74
|
+
"rehype-raw": "^6.1.1",
|
75
|
+
"remark-gfm": "^3.0.1",
|
76
|
+
"ts-jest": "^29.1.1",
|
77
|
+
"tsup": "^8.2.4",
|
78
|
+
"typescript": "^5.3.3"
|
79
|
+
},
|
80
|
+
"peerDependencies": {
|
81
|
+
"@emotion/react": "^11.11.3",
|
82
|
+
"@emotion/styled": "^11.11.0",
|
83
|
+
"@mui/material": "^5.15.11",
|
84
|
+
"@xstate/react": "^4.1.1",
|
85
|
+
"lodash": "^4.17.21",
|
86
|
+
"react": ">=17",
|
87
|
+
"react-dom": ">=17",
|
88
|
+
"xstate": "^5.18.2"
|
89
|
+
},
|
90
|
+
"peerDependenciesMeta": {
|
91
|
+
"lodash": {
|
92
|
+
"optional": true
|
93
|
+
},
|
94
|
+
"@emotion/react": {
|
95
|
+
"optional": true
|
96
|
+
},
|
97
|
+
"@emotion/styled": {
|
98
|
+
"optional": true
|
99
|
+
},
|
100
|
+
"@mui/material": {
|
101
|
+
"optional": true
|
102
|
+
},
|
103
|
+
"react": {
|
104
|
+
"optional": true
|
105
|
+
},
|
106
|
+
"react-dom": {
|
107
|
+
"optional": true
|
108
|
+
}
|
109
|
+
},
|
110
|
+
"publishConfig": {
|
111
|
+
"access": "public"
|
112
|
+
},
|
113
|
+
"dependencies": {
|
114
|
+
"@layer5/meshery-design-embed": "^0.4.0",
|
115
|
+
"billboard.js": "^3.14.3",
|
116
|
+
"js-yaml": "^4.1.0",
|
117
|
+
"lodash": "^4.17.21",
|
118
|
+
"moment": "^2.30.1",
|
119
|
+
"re-resizable": "^6.10.3",
|
120
|
+
"react-draggable": "^4.4.6",
|
121
|
+
"react-share": "^5.1.0",
|
122
|
+
"mui-datatables": "*",
|
123
|
+
"@types/mui-datatables": "*"
|
124
|
+
}
|
125
|
+
}
|