@forestadmin/forest-cloud 1.0.0 → 1.0.1

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 (2) hide show
  1. package/dist/package.json +63 -0
  2. package/package.json +3 -2
@@ -0,0 +1,63 @@
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
+ "dist/**/*.json"
35
+ ],
36
+ "homepage": "https://github.com/ForestAdmin/agent-nodejs/forest-cloud",
37
+ "license": "GPL-3.0",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/ForestAdmin/agent-nodejs.git",
41
+ "directory": "packages/forest-cloud"
42
+ },
43
+ "bin": {
44
+ "forest-cloud": "dist/command.js"
45
+ },
46
+ "scripts": {
47
+ "build": "tsc && yarn build:copy",
48
+ "build:watch": "tsc --watch & nodemon --watch 'src/templates/*' --ext txt --exec yarn build:copy",
49
+ "build:copy": "cp -r src/templates ./dist && cp package.json ./dist",
50
+ "lint": "eslint src test",
51
+ "test": "jest"
52
+ },
53
+ "keywords": [
54
+ "forestadmin",
55
+ "cloud",
56
+ "customization"
57
+ ],
58
+ "devDependencies": {
59
+ "@types/adm-zip": "^0.5.5",
60
+ "log-symbols": "^4.1.0",
61
+ "nodemon": "^3.0.3"
62
+ }
63
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forestadmin/forest-cloud",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Utility to bootstrap and publish forest admin cloud projects customization",
5
5
  "dependencies": {
6
6
  "@forestadmin/agent": "1.38.0",
@@ -30,7 +30,8 @@
30
30
  "files": [
31
31
  "dist/**/*.js",
32
32
  "dist/**/*.d.ts",
33
- "dist/**/*.txt"
33
+ "dist/**/*.txt",
34
+ "dist/**/*.json"
34
35
  ],
35
36
  "homepage": "https://github.com/ForestAdmin/agent-nodejs/forest-cloud",
36
37
  "license": "GPL-3.0",