@forestadmin/forest-cloud 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/LICENSE +674 -0
- package/README.md +21 -0
- package/dist/build-command.d.ts +2 -0
- package/dist/build-command.js +48 -0
- package/dist/command.d.ts +3 -0
- package/dist/command.js +12 -0
- package/dist/dialogs/action-runner.d.ts +3 -0
- package/dist/dialogs/action-runner.js +28 -0
- package/dist/dialogs/ask-to-overwrite-customizations.d.ts +4 -0
- package/dist/dialogs/ask-to-overwrite-customizations.js +30 -0
- package/dist/dialogs/check-latest-version.d.ts +4 -0
- package/dist/dialogs/check-latest-version.js +24 -0
- package/dist/errors.d.ts +8 -0
- package/dist/errors.js +18 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/login.d.ts +3 -0
- package/dist/login.js +23 -0
- package/dist/make-commands.d.ts +5 -0
- package/dist/make-commands.js +136 -0
- package/dist/services/access-file.d.ts +2 -0
- package/dist/services/access-file.js +20 -0
- package/dist/services/bootstrap-path-manager.d.ts +18 -0
- package/dist/services/bootstrap-path-manager.js +48 -0
- package/dist/services/bootstrap.d.ts +4 -0
- package/dist/services/bootstrap.js +79 -0
- package/dist/services/dist-path-manager.d.ts +7 -0
- package/dist/services/dist-path-manager.js +19 -0
- package/dist/services/environment-variables.d.ts +6 -0
- package/dist/services/environment-variables.js +92 -0
- package/dist/services/event-subscriber.d.ts +12 -0
- package/dist/services/event-subscriber.js +66 -0
- package/dist/services/http-server.d.ts +25 -0
- package/dist/services/http-server.js +110 -0
- package/dist/services/packager.d.ts +3 -0
- package/dist/services/packager.js +17 -0
- package/dist/services/publish.d.ts +4 -0
- package/dist/services/publish.js +47 -0
- package/dist/services/update-typings.d.ts +6 -0
- package/dist/services/update-typings.js +50 -0
- package/dist/templates/env.txt +2 -0
- package/dist/templates/index.txt +19 -0
- package/dist/types.d.ts +87 -0
- package/dist/types.js +3 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@forestadmin/forest-cloud",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Utility to bootstrap and publish forest admin cloud projects customization",
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"@forestadmin/agent": "1.38.0",
|
|
7
|
+
"@forestadmin/datasource-customizer": "1.43.1",
|
|
8
|
+
"@forestadmin/datasource-sql": "1.9.0",
|
|
9
|
+
"adm-zip": "^0.5.10",
|
|
10
|
+
"apollo-cache-inmemory": "^1.6.6",
|
|
11
|
+
"apollo-client": "^2.6.10",
|
|
12
|
+
"apollo-link-ws": "^1.0.20",
|
|
13
|
+
"axios": "^1.6.7",
|
|
14
|
+
"commander": "^11.1.0",
|
|
15
|
+
"dotenv": "^16.4.1",
|
|
16
|
+
"forest-cli": "^5.0.0",
|
|
17
|
+
"form-data": "^4.0.0",
|
|
18
|
+
"graphql": "14.5.7",
|
|
19
|
+
"graphql-tag": "^2.12.6",
|
|
20
|
+
"latest-version": "^5.0.0",
|
|
21
|
+
"ora": "^3.2.0",
|
|
22
|
+
"sqlite3": "^5.1.7",
|
|
23
|
+
"subscriptions-transport-ws": "^0.11.0",
|
|
24
|
+
"ws": "^8.16.0"
|
|
25
|
+
},
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"main": "dist/index.js",
|
|
30
|
+
"files": [
|
|
31
|
+
"dist/**/*.js",
|
|
32
|
+
"dist/**/*.d.ts",
|
|
33
|
+
"dist/**/*.txt"
|
|
34
|
+
],
|
|
35
|
+
"homepage": "https://github.com/ForestAdmin/agent-nodejs/forest-cloud",
|
|
36
|
+
"license": "GPL-3.0",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/ForestAdmin/agent-nodejs.git",
|
|
40
|
+
"directory": "packages/forest-cloud"
|
|
41
|
+
},
|
|
42
|
+
"bin": {
|
|
43
|
+
"forest-cloud": "dist/command.js"
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "tsc && yarn build:copy",
|
|
47
|
+
"build:watch": "tsc --watch & nodemon --watch 'src/templates/*' --ext txt --exec yarn build:copy",
|
|
48
|
+
"build:copy": "cp -r src/templates ./dist && cp package.json ./dist",
|
|
49
|
+
"lint": "eslint src test",
|
|
50
|
+
"test": "jest"
|
|
51
|
+
},
|
|
52
|
+
"keywords": [
|
|
53
|
+
"forestadmin",
|
|
54
|
+
"cloud",
|
|
55
|
+
"customization"
|
|
56
|
+
],
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/adm-zip": "^0.5.5",
|
|
59
|
+
"log-symbols": "^4.1.0",
|
|
60
|
+
"nodemon": "^3.0.3"
|
|
61
|
+
}
|
|
62
|
+
}
|