@strapi/plugin-cloud 0.0.0-experimental.7150c563ca52765213874a111c32237ef1fa8571

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.
Files changed (34) hide show
  1. package/LICENSE +15 -0
  2. package/README.md +6 -0
  3. package/dist/_chunks/App-77fd3953.mjs +817 -0
  4. package/dist/_chunks/App-77fd3953.mjs.map +1 -0
  5. package/dist/_chunks/App-8aeda33a.js +819 -0
  6. package/dist/_chunks/App-8aeda33a.js.map +1 -0
  7. package/dist/_chunks/en-666d0574.mjs +21 -0
  8. package/dist/_chunks/en-666d0574.mjs.map +1 -0
  9. package/dist/_chunks/en-a83e2040.js +21 -0
  10. package/dist/_chunks/en-a83e2040.js.map +1 -0
  11. package/dist/_chunks/fr-29be1888.mjs +21 -0
  12. package/dist/_chunks/fr-29be1888.mjs.map +1 -0
  13. package/dist/_chunks/fr-61969bef.js +21 -0
  14. package/dist/_chunks/fr-61969bef.js.map +1 -0
  15. package/dist/_chunks/index-57b8c7d4.mjs +77 -0
  16. package/dist/_chunks/index-57b8c7d4.mjs.map +1 -0
  17. package/dist/_chunks/index-60f044b4.js +76 -0
  18. package/dist/_chunks/index-60f044b4.js.map +1 -0
  19. package/dist/admin/components/Cloud.d.ts +2 -0
  20. package/dist/admin/components/Github.d.ts +2 -0
  21. package/dist/admin/components/Icons/LinkIcon.d.ts +1 -0
  22. package/dist/admin/components/Icons/UploadIcon.d.ts +1 -0
  23. package/dist/admin/components/Initializer.d.ts +10 -0
  24. package/dist/admin/components/PluginIcon.d.ts +7 -0
  25. package/dist/admin/index.d.ts +13 -0
  26. package/dist/admin/index.js +8 -0
  27. package/dist/admin/index.js.map +1 -0
  28. package/dist/admin/index.mjs +9 -0
  29. package/dist/admin/index.mjs.map +1 -0
  30. package/dist/admin/pages/App.d.ts +8 -0
  31. package/dist/admin/pages/HomePage.d.ts +2 -0
  32. package/dist/admin/pluginId.d.ts +1 -0
  33. package/dist/admin/utils/getTrad.d.ts +2 -0
  34. package/package.json +79 -0
@@ -0,0 +1,8 @@
1
+ /**
2
+ *
3
+ * This component is the skeleton around the actual pages, and should only
4
+ * contain code that should be seen on all pages. (e.g. navigation bar)
5
+ *
6
+ */
7
+ declare const App: () => import("react/jsx-runtime").JSX.Element;
8
+ export { App };
@@ -0,0 +1,2 @@
1
+ declare const HomePage: () => import("react/jsx-runtime").JSX.Element;
2
+ export { HomePage };
@@ -0,0 +1 @@
1
+ export declare const pluginId = "cloud";
@@ -0,0 +1,2 @@
1
+ declare const getTrad: (id: string) => string;
2
+ export { getTrad };
package/package.json ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "@strapi/plugin-cloud",
3
+ "version": "0.0.0-experimental.7150c563ca52765213874a111c32237ef1fa8571",
4
+ "description": "Instructions to deploy your local project to Strapi Cloud",
5
+ "license": "MIT",
6
+ "author": {
7
+ "name": "Strapi Solutions SAS",
8
+ "email": "hi@strapi.io",
9
+ "url": "https://strapi.io"
10
+ },
11
+ "maintainers": [
12
+ {
13
+ "name": "Strapi Solutions SAS",
14
+ "email": "hi@strapi.io",
15
+ "url": "https://strapi.io"
16
+ }
17
+ ],
18
+ "exports": {
19
+ "./strapi-admin": {
20
+ "types": "./dist/admin/index.d.ts",
21
+ "source": "./admin/src/index.ts",
22
+ "import": "./dist/admin/index.mjs",
23
+ "require": "./dist/admin/index.js",
24
+ "default": "./dist/admin/index.js"
25
+ },
26
+ "./package.json": "./package.json"
27
+ },
28
+ "files": [
29
+ "./dist"
30
+ ],
31
+ "scripts": {
32
+ "build": "strapi plugin:build --force",
33
+ "clean": "run -T rimraf ./dist",
34
+ "develop": "strapi plugin:watch",
35
+ "lint": "yarn lint:project && yarn lint:front",
36
+ "lint:front": "run -T eslint ./admin -c ./admin/.eslintrc.js",
37
+ "lint:project": "run -T eslint . -c ./.eslintrc.js",
38
+ "prepublishOnly": "yarn clean && yarn build",
39
+ "test:ts:front": "run -T tsc -p admin/tsconfig.json"
40
+ },
41
+ "dependencies": {
42
+ "@strapi/design-system": "^1.12.0",
43
+ "@strapi/helper-plugin": "0.0.0-experimental.7150c563ca52765213874a111c32237ef1fa8571",
44
+ "@strapi/icons": "^1.12.0",
45
+ "react-intl": "6.4.1"
46
+ },
47
+ "devDependencies": {
48
+ "@strapi/strapi": "0.0.0-experimental.7150c563ca52765213874a111c32237ef1fa8571",
49
+ "@types/react": "^18.2.7",
50
+ "@types/react-dom": "^18.2.12",
51
+ "@types/react-router-dom": "^5.3.3",
52
+ "@types/styled-components": "5.1.26",
53
+ "eslint-config-custom": "0.0.0-experimental.7150c563ca52765213874a111c32237ef1fa8571",
54
+ "react": "^18.2.0",
55
+ "react-dom": "^18.2.0",
56
+ "react-router-dom": "^5.3.4",
57
+ "styled-components": "^5.3.3",
58
+ "tsconfig": "0.0.0-experimental.7150c563ca52765213874a111c32237ef1fa8571",
59
+ "typescript": "5.2.2"
60
+ },
61
+ "peerDependencies": {
62
+ "@strapi/strapi": "^4.4.0",
63
+ "react": "^17.0.0 || ^18.0.0",
64
+ "react-dom": "^17.0.0 || ^18.0.0",
65
+ "react-router-dom": "^5.3.4",
66
+ "styled-components": "^5.3.6"
67
+ },
68
+ "engines": {
69
+ "node": ">=14.19.1 <=18.x.x",
70
+ "npm": ">=6.0.0"
71
+ },
72
+ "strapi": {
73
+ "name": "strapi-cloud",
74
+ "description": "Instructions to deploy your local project to Strapi Cloud",
75
+ "kind": "plugin",
76
+ "displayName": "Strapi Cloud"
77
+ },
78
+ "gitHead": "7150c563ca52765213874a111c32237ef1fa8571"
79
+ }