@banyan_cloud/roots 1.0.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 +3 -0
- package/dist/cjs/index.js +15743 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/esm/index.js +15643 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/index.js +15642 -0
- package/package.json +103 -0
package/package.json
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@banyan_cloud/roots",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Design System Library which drives the Banyan Cloud products",
|
|
5
|
+
"main": "dist/cjs/index.js",
|
|
6
|
+
"module": "dist/esm/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"peerDependencies": {
|
|
11
|
+
"@emotion/react": "^11.10.4",
|
|
12
|
+
"@emotion/styled": "^11.10.4",
|
|
13
|
+
"react": "^18.2.0",
|
|
14
|
+
"react-dom": "^18.2.0"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@babel/core": "^7.19.6",
|
|
18
|
+
"@babel/preset-env": "^7.19.4",
|
|
19
|
+
"@babel/preset-react": "^7.18.6",
|
|
20
|
+
"@floating-ui/react-dom": "^1.0.0",
|
|
21
|
+
"@floating-ui/react-dom-interactions": "^0.10.1",
|
|
22
|
+
"@mui/material": "^5.10.9",
|
|
23
|
+
"@rollup/plugin-babel": "^6.0.2",
|
|
24
|
+
"@rollup/plugin-commonjs": "^23.0.2",
|
|
25
|
+
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
26
|
+
"babel-plugin-syntax-dynamic-import": "^6.18.0",
|
|
27
|
+
"date-fns": "^2.29.3",
|
|
28
|
+
"html-webpack-plugin": "^5.5.0",
|
|
29
|
+
"path": "^0.12.7",
|
|
30
|
+
"postcss": "^8.4.18",
|
|
31
|
+
"react-json-view": "latest",
|
|
32
|
+
"rollup": "^3.2.3",
|
|
33
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
34
|
+
"rollup-plugin-postcss": "^4.0.2"
|
|
35
|
+
},
|
|
36
|
+
"eslintConfig": {
|
|
37
|
+
"extends": [
|
|
38
|
+
"react-app",
|
|
39
|
+
"react-app/jest"
|
|
40
|
+
],
|
|
41
|
+
"overrides": [
|
|
42
|
+
{
|
|
43
|
+
"files": [
|
|
44
|
+
"**/*.stories.*"
|
|
45
|
+
],
|
|
46
|
+
"rules": {
|
|
47
|
+
"import/no-anonymous-default-export": "off"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@storybook/addon-a11y": "^6.5.12",
|
|
54
|
+
"@storybook/addon-actions": "^6.5.12",
|
|
55
|
+
"@storybook/addon-backgrounds": "^6.5.12",
|
|
56
|
+
"@storybook/addon-docs": "^6.5.12",
|
|
57
|
+
"@storybook/addon-essentials": "^6.5.12",
|
|
58
|
+
"@storybook/addon-interactions": "^6.5.12",
|
|
59
|
+
"@storybook/addon-links": "^6.5.12",
|
|
60
|
+
"@storybook/addons": "^6.5.12",
|
|
61
|
+
"@storybook/builder-webpack5": "^6.5.12",
|
|
62
|
+
"@storybook/manager-webpack5": "^6.5.12",
|
|
63
|
+
"@storybook/node-logger": "^6.5.12",
|
|
64
|
+
"@storybook/preset-create-react-app": "^4.1.2",
|
|
65
|
+
"@storybook/react": "^6.5.12",
|
|
66
|
+
"@storybook/testing-library": "^0.0.13",
|
|
67
|
+
"@storybook/theming": "^6.5.12",
|
|
68
|
+
"babel-plugin-named-exports-order": "^0.0.2",
|
|
69
|
+
"eslint": "^8.2.0",
|
|
70
|
+
"eslint-config-airbnb": "19.0.4",
|
|
71
|
+
"eslint-config-prettier": "^8.5.0",
|
|
72
|
+
"eslint-plugin-import": "^2.25.3",
|
|
73
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
74
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
75
|
+
"eslint-plugin-react": "^7.28.0",
|
|
76
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
77
|
+
"prettier": "^2.7.1",
|
|
78
|
+
"prop-types": "^15.8.1",
|
|
79
|
+
"sass": "^1.55.0",
|
|
80
|
+
"sass-loader": "^13.1.0",
|
|
81
|
+
"storybook-addon-designs": "^6.3.1",
|
|
82
|
+
"storybook-dark-mode": "^1.1.2"
|
|
83
|
+
},
|
|
84
|
+
"scripts": {
|
|
85
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
86
|
+
"storybook": "start-storybook -p 6006 -s ./components",
|
|
87
|
+
"build-storybook": "build-storybook -s ./components",
|
|
88
|
+
"lint": "eslint --ext js,jsx .",
|
|
89
|
+
"lint:fix": "eslint --ext js,jsx . --fix",
|
|
90
|
+
"format": "prettier --write './**/*.{js,jsx,ts,tsx,md,json}' --config ./.prettierrc",
|
|
91
|
+
"rollup": "rollup -c --bundleConfigAsCjs"
|
|
92
|
+
},
|
|
93
|
+
"repository": {
|
|
94
|
+
"type": "git",
|
|
95
|
+
"url": "git+https://github.com/banyandata-cloud/roots.git"
|
|
96
|
+
},
|
|
97
|
+
"author": "",
|
|
98
|
+
"license": "ISC",
|
|
99
|
+
"bugs": {
|
|
100
|
+
"url": "https://github.com/banyandata-cloud/roots/issues"
|
|
101
|
+
},
|
|
102
|
+
"homepage": "https://github.com/banyandata-cloud/roots#readme"
|
|
103
|
+
}
|