@contentful/experiences-visual-editor-react 0.0.1-alpha.10
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 +21 -0
- package/README.md +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +4529 -0
- package/dist/index.js.map +1 -0
- package/dist/renderApp.js +54202 -0
- package/dist/renderApp.js.map +1 -0
- package/package.json +73 -0
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@contentful/experiences-visual-editor-react",
|
|
3
|
+
"version": "0.0.1-alpha.10",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"readme.md",
|
|
10
|
+
"package.json",
|
|
11
|
+
"dist/**/*.*"
|
|
12
|
+
],
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"registry": "https://npm.pkg.github.com/"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"bundle": "npx watchify dist/index.cjs -o dist/bundle.js",
|
|
18
|
+
"clean": "rimraf dist",
|
|
19
|
+
"prebuild": "npm run clean",
|
|
20
|
+
"build": "rollup -c ./rollup.config.mjs",
|
|
21
|
+
"predev": "npm run clean",
|
|
22
|
+
"dev": "rollup -c ./rollup.config.mjs --watch --environment DEV",
|
|
23
|
+
"lint": "eslint src --ext '.ts,.tsx,.js,.jsx' --max-warnings 0 --ignore-path ../../.eslintignore",
|
|
24
|
+
"lint:fix": "eslint src --ext '.ts,.tsx,.js,.jsx' --fix",
|
|
25
|
+
"test": "vitest",
|
|
26
|
+
"test:coverage": "vitest run --coverage",
|
|
27
|
+
"depcruise": "depcruise src"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@contentful/experiences-components-react": "0.0.1-alpha.8",
|
|
31
|
+
"@contentful/experiences-core": "0.0.1-alpha.8",
|
|
32
|
+
"@hello-pangea/dnd": "^16.3.0",
|
|
33
|
+
"classnames": "^2.3.2",
|
|
34
|
+
"contentful": "^10.6.14",
|
|
35
|
+
"immer": "^10.0.3",
|
|
36
|
+
"lodash-es": "^4.17.21",
|
|
37
|
+
"md5": "^2.3.0",
|
|
38
|
+
"style-inject": "^0.3.0",
|
|
39
|
+
"use-debounce": "^10.0.0",
|
|
40
|
+
"uuid": "^9.0.1",
|
|
41
|
+
"zustand": "^4.4.7"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@rollup/plugin-commonjs": "^25.0.4",
|
|
45
|
+
"@rollup/plugin-node-resolve": "^15.2.1",
|
|
46
|
+
"@rollup/plugin-terser": "^0.4.3",
|
|
47
|
+
"@rollup/plugin-typescript": "^11.1.3",
|
|
48
|
+
"@types/lodash-es": "^4.17.12",
|
|
49
|
+
"@types/react": "^18.2.15",
|
|
50
|
+
"@types/react-dom": "^18.2.7",
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
52
|
+
"@typescript-eslint/parser": "^7.0.2",
|
|
53
|
+
"browserify-livereload": "^1.0.10",
|
|
54
|
+
"eslint": "^8.45.0",
|
|
55
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
56
|
+
"eslint-plugin-react-refresh": "^0.4.3",
|
|
57
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
58
|
+
"postcss-import": "^15.1.0",
|
|
59
|
+
"rimraf": "^5.0.5",
|
|
60
|
+
"rollup-plugin-dts": "^6.0.2",
|
|
61
|
+
"rollup-plugin-inject-process-env": "^1.3.1",
|
|
62
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
63
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
64
|
+
"rollup-plugin-serve": "^3.0.0",
|
|
65
|
+
"rollup-plugin-ts": "^3.4.5",
|
|
66
|
+
"typescript": "^5.0.2"
|
|
67
|
+
},
|
|
68
|
+
"peerDependencies": {
|
|
69
|
+
"react": ">=17.0.0",
|
|
70
|
+
"react-dom": ">=17.0.0"
|
|
71
|
+
},
|
|
72
|
+
"gitHead": "61570fda78098dde45c47ff2f958ac80fa3855b4"
|
|
73
|
+
}
|