layerpro 0.9.0 → 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/CODE_OF_CONDUCT.md +115 -0
- package/CONTRIBUTING.md +159 -0
- package/README.md +10 -3
- package/docs/index.md +10 -3
- package/index.d.ts +0 -1
- package/index.js +11 -11
- package/package.json +23 -29
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",
|
|
@@ -140,22 +132,23 @@
|
|
|
140
132
|
"scripts": {
|
|
141
133
|
"watch": "webpack --watch --progress --color --mode production --config webpack.ts",
|
|
142
134
|
"dist": "webpack --progress --color --mode production --config webpack.ts",
|
|
135
|
+
"----": "",
|
|
136
|
+
"tsc": "tsc -b",
|
|
137
|
+
"eslint": "eslint",
|
|
138
|
+
"sandworm": "sandworm",
|
|
143
139
|
"------": "",
|
|
144
|
-
"git": "git add . && git commit -m \"update\" && git pull && git push --all",
|
|
145
|
-
"--------": "",
|
|
146
|
-
"prepublish1": "tsc",
|
|
147
|
-
"compile-tests": "tsc -p . --outDir out",
|
|
148
|
-
"watch-tests": "tsc -p . -w --outDir out",
|
|
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
|
-
"optimizeSVG": "cd mcp/node && node optimizeSVG.js"
|
|
153
|
-
|
|
154
|
-
|
|
144
|
+
"optimizeSVG": "cd mcp/node && node optimizeSVG.js"
|
|
145
|
+
},
|
|
146
|
+
"engines": {
|
|
147
|
+
"node": ">=18"
|
|
155
148
|
},
|
|
156
149
|
"devDependencies": {
|
|
157
150
|
"@babel/core": "^7.26.0",
|
|
158
|
-
"@babel/preset-react": "7.
|
|
151
|
+
"@babel/preset-react": "7.26.3",
|
|
159
152
|
"@babel/preset-typescript": "7.26.0",
|
|
160
153
|
"@types/webpack-env": "1.18.5",
|
|
161
154
|
"babel-loader": "9.2.1",
|
|
@@ -163,17 +156,18 @@
|
|
|
163
156
|
"css-loader": "7.1.2",
|
|
164
157
|
"file-loader": "6.2.0",
|
|
165
158
|
"jquery": "3.7.1",
|
|
166
|
-
"
|
|
167
|
-
"react
|
|
168
|
-
"
|
|
169
|
-
"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",
|
|
170
164
|
"style-loader": "^4.0.0",
|
|
171
165
|
"terser-webpack-plugin": "^5.3.10",
|
|
172
166
|
"thread-loader": "4.0.4",
|
|
173
167
|
"ts-loader": "^9.5.1",
|
|
174
168
|
"ts-node": "10.9.2",
|
|
175
|
-
"typescript": "5.
|
|
176
|
-
"webpack": "^5.
|
|
169
|
+
"typescript": "5.7.2",
|
|
170
|
+
"webpack": "^5.97.1",
|
|
177
171
|
"webpack-cli": "5.1.4",
|
|
178
172
|
"webpack-dev-server": "^5.1.0"
|
|
179
173
|
}
|