profoundjs 6.0.0-beta.2 → 6.0.0-beta.6
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/index.js +1 -0
- package/package.json +8 -9
- package/profound.jse +1 -1
- package/setup/complete_install.js +405 -0
- package/setup/config.js +1 -1
- package/setup/install.js +148 -0
- package/setup/install_utils.js +123 -0
- package/setup/modules/puiscreens.json +23 -25
- package/setup/package.json +2 -2
- package/setup/pjsdist.savf +0 -0
- package/setup/setup.js +498 -866
- package/setup/start.js +12 -1
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "profoundjs",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
4
|
-
"min-profoundui-version": "6.
|
|
3
|
+
"version": "6.0.0-beta.6",
|
|
4
|
+
"min-profoundui-version": "6.19.3",
|
|
5
5
|
"description": "Profound.js Framework and Server",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"profound",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"modernization"
|
|
26
26
|
],
|
|
27
27
|
"engines": {
|
|
28
|
-
"node": "^
|
|
28
|
+
"node": "^14 || ^16"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"acorn": "^8.6.0",
|
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
"moment": "^2.26.0",
|
|
71
71
|
"morgan": "^1.9.1",
|
|
72
72
|
"multer": "^1.4.2",
|
|
73
|
+
"needle": "^3.1.0",
|
|
73
74
|
"node-machine-id": "^1.1.12",
|
|
74
75
|
"p-iteration": "^1.1.8",
|
|
75
76
|
"pdfmake": "^0.2.4",
|
|
@@ -78,7 +79,7 @@
|
|
|
78
79
|
"profoundjs-strands": "^1.0.3",
|
|
79
80
|
"profoundjs-swagger-stats": "^1.1.2",
|
|
80
81
|
"profoundjs-swagger-ui": "^1.1.7",
|
|
81
|
-
"progress
|
|
82
|
+
"progress": "^2.0.3",
|
|
82
83
|
"prompts": "^2.3.2",
|
|
83
84
|
"randomatic": "^3.1.1",
|
|
84
85
|
"request": "^2.88.0",
|
|
@@ -97,13 +98,11 @@
|
|
|
97
98
|
"xterm-addon-web-links": "^0.4.0"
|
|
98
99
|
},
|
|
99
100
|
"scripts": {
|
|
100
|
-
"
|
|
101
|
+
"postinstall": "node setup/install.js",
|
|
102
|
+
"setup": "node setup/setup.js"
|
|
101
103
|
},
|
|
102
104
|
"author": "Profound Logic Software",
|
|
103
105
|
"homepage": "http://profoundjs.com/",
|
|
104
106
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
105
|
-
"optionalDependencies": {
|
|
106
|
-
"idb-connector": "1.2.0",
|
|
107
|
-
"profoundjs-node-pty": "^2.0.2"
|
|
108
|
-
}
|
|
107
|
+
"optionalDependencies": {}
|
|
109
108
|
}
|