layerpro 0.9.2 → 0.9.3
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/README.md +4 -3
- package/docs/index.md +4 -3
- package/index.d.ts +0 -1
- package/index.js +38 -2
- package/package.json +17 -21
- package/index.js.LICENSE.txt +0 -40
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "layerpro",
|
|
3
3
|
"displayName": "layerpro",
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.3",
|
|
5
5
|
"description": "Custom popups, alert, confirmn, prompt... by Dario Passariello",
|
|
6
6
|
"copyright": "Dario Passariello",
|
|
7
7
|
"license": "MIT",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
"proxy": {
|
|
34
34
|
"api": {
|
|
35
35
|
"tst": "http://localhost:5003/",
|
|
36
|
-
"dev": "https://
|
|
37
|
-
"pro": "https://
|
|
36
|
+
"dev": "https://a51.dev/",
|
|
37
|
+
"pro": "https://a51.dev/"
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"socket": {
|
|
41
41
|
"url": {
|
|
42
|
-
"tst": "wss://ws.
|
|
43
|
-
"dev": "wss://ws.
|
|
44
|
-
"pro": "wss://ws.
|
|
42
|
+
"tst": "wss://ws.a51.dev/",
|
|
43
|
+
"dev": "wss://ws.a51.dev/",
|
|
44
|
+
"pro": "wss://ws.a51.dev/"
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"info": {
|
|
@@ -77,11 +77,6 @@
|
|
|
77
77
|
"workspaces": [
|
|
78
78
|
"mcp"
|
|
79
79
|
],
|
|
80
|
-
"cordova": {
|
|
81
|
-
"platforms": [
|
|
82
|
-
"android"
|
|
83
|
-
]
|
|
84
|
-
},
|
|
85
80
|
"typings": "./types/*",
|
|
86
81
|
"globals": {
|
|
87
82
|
"layerpro": {}
|
|
@@ -110,9 +105,6 @@
|
|
|
110
105
|
"last 1 safari version"
|
|
111
106
|
]
|
|
112
107
|
},
|
|
113
|
-
"engines": {
|
|
114
|
-
"node": ">=18.0.0"
|
|
115
|
-
},
|
|
116
108
|
"keywords": [
|
|
117
109
|
"layer",
|
|
118
110
|
"popup",
|
|
@@ -145,15 +137,18 @@
|
|
|
145
137
|
"eslint": "eslint",
|
|
146
138
|
"sandworm": "sandworm",
|
|
147
139
|
"------": "",
|
|
148
|
-
"git": "git add . && git commit -m \"update\" && git pull && git push --all",
|
|
140
|
+
"git": "git push --all -u && git add . && git commit -m \"update\" && git pull && git push --all",
|
|
149
141
|
"---------": "",
|
|
150
142
|
"update": "cd mcp/node && node npmUpdate",
|
|
151
143
|
"backup": "cd mcp/backup && run.bat",
|
|
152
144
|
"optimizeSVG": "cd mcp/node && node optimizeSVG.js"
|
|
153
145
|
},
|
|
146
|
+
"engines": {
|
|
147
|
+
"node": ">=18"
|
|
148
|
+
},
|
|
154
149
|
"devDependencies": {
|
|
155
150
|
"@babel/core": "^7.26.0",
|
|
156
|
-
"@babel/preset-react": "7.
|
|
151
|
+
"@babel/preset-react": "7.26.3",
|
|
157
152
|
"@babel/preset-typescript": "7.26.0",
|
|
158
153
|
"@types/webpack-env": "1.18.5",
|
|
159
154
|
"babel-loader": "9.2.1",
|
|
@@ -161,17 +156,18 @@
|
|
|
161
156
|
"css-loader": "7.1.2",
|
|
162
157
|
"file-loader": "6.2.0",
|
|
163
158
|
"jquery": "3.7.1",
|
|
164
|
-
"
|
|
165
|
-
"react
|
|
166
|
-
"
|
|
167
|
-
"sass
|
|
159
|
+
"process": "0.11.10",
|
|
160
|
+
"react": "19.0.0",
|
|
161
|
+
"react-dom": "19.0.0",
|
|
162
|
+
"sass": "^1.82.0",
|
|
163
|
+
"sass-loader": "^16.0.4",
|
|
168
164
|
"style-loader": "^4.0.0",
|
|
169
165
|
"terser-webpack-plugin": "^5.3.10",
|
|
170
166
|
"thread-loader": "4.0.4",
|
|
171
167
|
"ts-loader": "^9.5.1",
|
|
172
168
|
"ts-node": "10.9.2",
|
|
173
169
|
"typescript": "5.7.2",
|
|
174
|
-
"webpack": "^5.
|
|
170
|
+
"webpack": "^5.97.1",
|
|
175
171
|
"webpack-cli": "5.1.4",
|
|
176
172
|
"webpack-dev-server": "^5.1.0"
|
|
177
173
|
}
|
package/index.js.LICENSE.txt
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* jQuery JavaScript Library v3.7.1
|
|
3
|
-
* https://jquery.com/
|
|
4
|
-
*
|
|
5
|
-
* Copyright OpenJS Foundation and other contributors
|
|
6
|
-
* Released under the MIT license
|
|
7
|
-
* https://jquery.org/license
|
|
8
|
-
*
|
|
9
|
-
* Date: 2023-08-28T13:37Z
|
|
10
|
-
*/
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* @license React
|
|
14
|
-
* react-dom.production.min.js
|
|
15
|
-
*
|
|
16
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
17
|
-
*
|
|
18
|
-
* This source code is licensed under the MIT license found in the
|
|
19
|
-
* LICENSE file in the root directory of this source tree.
|
|
20
|
-
*/
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* @license React
|
|
24
|
-
* react.production.min.js
|
|
25
|
-
*
|
|
26
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
27
|
-
*
|
|
28
|
-
* This source code is licensed under the MIT license found in the
|
|
29
|
-
* LICENSE file in the root directory of this source tree.
|
|
30
|
-
*/
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
* @license React
|
|
34
|
-
* scheduler.production.min.js
|
|
35
|
-
*
|
|
36
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
37
|
-
*
|
|
38
|
-
* This source code is licensed under the MIT license found in the
|
|
39
|
-
* LICENSE file in the root directory of this source tree.
|
|
40
|
-
*/
|