directual-web-components-v2 3.11.319
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 +34 -0
- package/dist/index.css +9371 -0
- package/dist/index.js +27851 -0
- package/dist/index.js.map +1 -0
- package/dist/index.modern.js +27770 -0
- package/dist/index.modern.js.map +1 -0
- package/package.json +141 -0
package/package.json
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "directual-web-components-v2",
|
|
3
|
+
"version": "3.11.319",
|
|
4
|
+
"description": "fps components",
|
|
5
|
+
"author": "Directual",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": "directual-js/directual-web-components-v2",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"module": "dist/index.modern.js",
|
|
10
|
+
"source": "src/index.js",
|
|
11
|
+
"moment": "^2.26.0",
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=10"
|
|
14
|
+
},
|
|
15
|
+
"browserslist": [
|
|
16
|
+
">0.2%",
|
|
17
|
+
"not ie 11",
|
|
18
|
+
"not dead",
|
|
19
|
+
"not chrome 49"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "microbundle-crl --no-compress --workers --format modern,cjs",
|
|
23
|
+
"start": "microbundle-crl watch --no-compress --workers --format modern,cjs",
|
|
24
|
+
"prepare": "run-s build",
|
|
25
|
+
"test": "run-s test:unit test:lint test:build",
|
|
26
|
+
"test:build": "run-s build",
|
|
27
|
+
"test:lint": "eslint .",
|
|
28
|
+
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
29
|
+
"test:watch": "react-scripts test --env=jsdom",
|
|
30
|
+
"predeploy": "cd example && npm install && npm run build",
|
|
31
|
+
"deploy": "gh-pages -d example/build",
|
|
32
|
+
"bump": "npm version patch -m \"Release v%s\" && git push && git push --tags",
|
|
33
|
+
"storybook": "storybook dev -p 6006",
|
|
34
|
+
"build-storybook": "storybook build"
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"lodash": "^4.17.21",
|
|
38
|
+
"moment": "^2.26.0",
|
|
39
|
+
"react": "18.2.0",
|
|
40
|
+
"react-beautiful-dnd": "^13.0.0",
|
|
41
|
+
"react-color": "^2.19.3",
|
|
42
|
+
"react-datetime": "^2.16.3",
|
|
43
|
+
"react-dropzone": "^14.2.3",
|
|
44
|
+
"react-markdown": "^5.0.2",
|
|
45
|
+
"react-table": "^7.7.0",
|
|
46
|
+
"recharts": "^2.6.2",
|
|
47
|
+
"remark-gfm": "^1.0.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
51
|
+
"@babel/runtime": "^7.15.4",
|
|
52
|
+
"@storybook/addon-essentials": "^7.6.17",
|
|
53
|
+
"@storybook/addon-interactions": "^7.6.17",
|
|
54
|
+
"@storybook/addon-links": "^7.6.17",
|
|
55
|
+
"@storybook/addon-onboarding": "^1.0.11",
|
|
56
|
+
"@storybook/blocks": "^7.6.17",
|
|
57
|
+
"@storybook/react": "^7.6.17",
|
|
58
|
+
"@storybook/react-webpack5": "^7.6.17",
|
|
59
|
+
"@storybook/test": "^7.6.17",
|
|
60
|
+
"babel-eslint": "^10.0.3",
|
|
61
|
+
"babel-plugin-inline-import-data-uri": "^1.0.1",
|
|
62
|
+
"cross-env": "^7.0.2",
|
|
63
|
+
"eslint": "^6.8.0",
|
|
64
|
+
"eslint-config-prettier": "^6.7.0",
|
|
65
|
+
"eslint-config-standard": "^14.1.0",
|
|
66
|
+
"eslint-config-standard-react": "^9.2.0",
|
|
67
|
+
"eslint-plugin-import": "^2.18.2",
|
|
68
|
+
"eslint-plugin-node": "^11.0.0",
|
|
69
|
+
"eslint-plugin-prettier": "^3.1.1",
|
|
70
|
+
"eslint-plugin-promise": "^4.2.1",
|
|
71
|
+
"eslint-plugin-react": "^7.17.0",
|
|
72
|
+
"eslint-plugin-standard": "^4.0.1",
|
|
73
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
74
|
+
"gh-pages": "^2.2.0",
|
|
75
|
+
"json-loader": "^0.5.7",
|
|
76
|
+
"microbundle-crl": "^0.13.10",
|
|
77
|
+
"npm-run-all": "^4.1.5",
|
|
78
|
+
"prettier": "^2.0.4",
|
|
79
|
+
"prop-types": "^15.8.1",
|
|
80
|
+
"react": "^18.2.0",
|
|
81
|
+
"react-dom": "^18.2.0",
|
|
82
|
+
"react-scripts": "5.0.1",
|
|
83
|
+
"storybook": "^7.6.17",
|
|
84
|
+
"transform-loader": "^0.2.4",
|
|
85
|
+
"webworkify-webpack": "^1.0.6"
|
|
86
|
+
},
|
|
87
|
+
"files": [
|
|
88
|
+
"dist"
|
|
89
|
+
],
|
|
90
|
+
"dependencies": {
|
|
91
|
+
"@editorjs/checklist": "^1.6.0",
|
|
92
|
+
"@editorjs/code": "^2.9.0",
|
|
93
|
+
"@editorjs/delimiter": "^1.4.2",
|
|
94
|
+
"@editorjs/editorjs": "^2.30.5",
|
|
95
|
+
"@editorjs/embed": "^2.7.4",
|
|
96
|
+
"@editorjs/header": "^2.8.7",
|
|
97
|
+
"@editorjs/image": "^2.9.3",
|
|
98
|
+
"@editorjs/inline-code": "^1.5.1",
|
|
99
|
+
"@editorjs/link": "^2.6.2",
|
|
100
|
+
"@editorjs/list": "^1.10.0",
|
|
101
|
+
"@editorjs/marker": "^1.4.0",
|
|
102
|
+
"@editorjs/paragraph": "^2.11.6",
|
|
103
|
+
"@editorjs/quote": "^2.7.2",
|
|
104
|
+
"@editorjs/raw": "^2.5.0",
|
|
105
|
+
"@editorjs/simple-image": "^1.6.0",
|
|
106
|
+
"@editorjs/table": "^2.4.1",
|
|
107
|
+
"@editorjs/underline": "^1.1.0",
|
|
108
|
+
"@editorjs/warning": "^1.4.0",
|
|
109
|
+
"@tanstack/react-table": "^8.21.3",
|
|
110
|
+
"@xyflow/react": "^12.6.4",
|
|
111
|
+
"color": "^4.2.3",
|
|
112
|
+
"dangerously-set-html-content": "^1.1.0",
|
|
113
|
+
"dompurify": "^3.2.5",
|
|
114
|
+
"editorjs-mermaid": "^1.0.0",
|
|
115
|
+
"editorjs-parser": "^1.5.3",
|
|
116
|
+
"embla-carousel-autoplay": "^8.1.8",
|
|
117
|
+
"embla-carousel-react": "^8.1.8",
|
|
118
|
+
"lodash": "^4.17.21",
|
|
119
|
+
"moment": "^2.26.0",
|
|
120
|
+
"react-beautiful-dnd": "^13.0.0",
|
|
121
|
+
"react-big-calendar": "^1.19.4",
|
|
122
|
+
"react-color": "^2.19.3",
|
|
123
|
+
"react-datetime": "^2.16.3",
|
|
124
|
+
"react-dropzone": "^14.2.3",
|
|
125
|
+
"react-editor-js": "^2.1.0",
|
|
126
|
+
"react-imask": "^7.6.1",
|
|
127
|
+
"react-markdown": "^5.0.2",
|
|
128
|
+
"react-range": "^1.10.0",
|
|
129
|
+
"react-table": "^7.7.0",
|
|
130
|
+
"react-tooltip": "^5.28.0",
|
|
131
|
+
"recharts": "^2.6.2",
|
|
132
|
+
"remark-gfm": "^1.0.0",
|
|
133
|
+
"storybook-css-modules": "^1.0.8"
|
|
134
|
+
},
|
|
135
|
+
"eslintConfig": {
|
|
136
|
+
"extends": [
|
|
137
|
+
"plugin:storybook/recommended"
|
|
138
|
+
]
|
|
139
|
+
},
|
|
140
|
+
"packageManager": "yarn@4.5.1"
|
|
141
|
+
}
|