@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.
- package/LICENSE +15 -0
- package/README.md +6 -0
- package/dist/_chunks/App-77fd3953.mjs +817 -0
- package/dist/_chunks/App-77fd3953.mjs.map +1 -0
- package/dist/_chunks/App-8aeda33a.js +819 -0
- package/dist/_chunks/App-8aeda33a.js.map +1 -0
- package/dist/_chunks/en-666d0574.mjs +21 -0
- package/dist/_chunks/en-666d0574.mjs.map +1 -0
- package/dist/_chunks/en-a83e2040.js +21 -0
- package/dist/_chunks/en-a83e2040.js.map +1 -0
- package/dist/_chunks/fr-29be1888.mjs +21 -0
- package/dist/_chunks/fr-29be1888.mjs.map +1 -0
- package/dist/_chunks/fr-61969bef.js +21 -0
- package/dist/_chunks/fr-61969bef.js.map +1 -0
- package/dist/_chunks/index-57b8c7d4.mjs +77 -0
- package/dist/_chunks/index-57b8c7d4.mjs.map +1 -0
- package/dist/_chunks/index-60f044b4.js +76 -0
- package/dist/_chunks/index-60f044b4.js.map +1 -0
- package/dist/admin/components/Cloud.d.ts +2 -0
- package/dist/admin/components/Github.d.ts +2 -0
- package/dist/admin/components/Icons/LinkIcon.d.ts +1 -0
- package/dist/admin/components/Icons/UploadIcon.d.ts +1 -0
- package/dist/admin/components/Initializer.d.ts +10 -0
- package/dist/admin/components/PluginIcon.d.ts +7 -0
- package/dist/admin/index.d.ts +13 -0
- package/dist/admin/index.js +8 -0
- package/dist/admin/index.js.map +1 -0
- package/dist/admin/index.mjs +9 -0
- package/dist/admin/index.mjs.map +1 -0
- package/dist/admin/pages/App.d.ts +8 -0
- package/dist/admin/pages/HomePage.d.ts +2 -0
- package/dist/admin/pluginId.d.ts +1 -0
- package/dist/admin/utils/getTrad.d.ts +2 -0
- package/package.json +79 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const pluginId = "cloud";
|
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
|
+
}
|