layerpro 1.2.2 → 1.5.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/README.md +21 -0
- package/index.js +1 -1
- package/package.json +30 -114
package/package.json
CHANGED
|
@@ -1,99 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "layerpro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Custom modals, alert, confirm, prompt... by Dario Passariello",
|
|
5
|
+
"company": {},
|
|
5
6
|
"copyright": "Dario Passariello",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"main": "./index.js",
|
|
8
|
-
"deprecated": false,
|
|
9
|
-
"preferGlobal": true,
|
|
10
|
-
"target": "web",
|
|
11
|
-
"language": {
|
|
12
|
-
"en": {}
|
|
13
|
-
},
|
|
14
|
-
"app": {
|
|
15
|
-
"folder": "/",
|
|
16
|
-
"port": 3000,
|
|
17
|
-
"code": "layerpro",
|
|
18
|
-
"type": "alpha",
|
|
19
|
-
"host": {
|
|
20
|
-
"dev": "http://localhost",
|
|
21
|
-
"prod": "https://examplepage.picla.net"
|
|
22
|
-
},
|
|
23
|
-
"proxy": {
|
|
24
|
-
"api": {
|
|
25
|
-
"dev": "http://localhost:5003/",
|
|
26
|
-
"pro": "https://api.a51.dev/"
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
"socket": {
|
|
30
|
-
"url": {
|
|
31
|
-
"tst": "wss://ws.a51.dev/",
|
|
32
|
-
"dev": "wss://ws.a51.dev/",
|
|
33
|
-
"pro": "wss://ws.a51.dev/"
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
|
-
"author": {
|
|
38
|
-
"name": "Dario Passariello",
|
|
39
|
-
"url": "https://dario.passariello.ca/",
|
|
40
|
-
"email": "dariopassariello@gmail.com"
|
|
41
|
-
},
|
|
42
7
|
"support": {
|
|
43
8
|
"name": "Dario Passariello",
|
|
44
9
|
"url": "https://dario.passariello.ca/",
|
|
45
10
|
"email": "dariopassariello@gmail.com"
|
|
46
11
|
},
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
"name": "Dario Passariello",
|
|
51
|
-
"email": "dariopassarielloa@gmail.com"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"name": "Valeria Cala Scaglitta",
|
|
55
|
-
"email": "valeriacalascaglitta@gmail.com"
|
|
56
|
-
}
|
|
57
|
-
],
|
|
58
|
-
"workspaces": [
|
|
59
|
-
".dev"
|
|
60
|
-
],
|
|
61
|
-
"npmName": "layerpro",
|
|
62
|
-
"npmFileMap": [
|
|
63
|
-
{
|
|
64
|
-
"basePath": "./dist/",
|
|
65
|
-
"files": [
|
|
66
|
-
"*.js"
|
|
67
|
-
]
|
|
68
|
-
}
|
|
12
|
+
"target": "web",
|
|
13
|
+
"typing": [
|
|
14
|
+
"types/*"
|
|
69
15
|
],
|
|
70
|
-
"globals": {
|
|
71
|
-
"layerpro": {}
|
|
72
|
-
},
|
|
73
|
-
"browserslist": {
|
|
74
|
-
"production": [
|
|
75
|
-
"last 2 Chrome major versions",
|
|
76
|
-
"last 2 Firefox major versions",
|
|
77
|
-
"last 2 Safari major versions",
|
|
78
|
-
"last 2 Edge major versions",
|
|
79
|
-
"last 2 Opera versions",
|
|
80
|
-
"last 2 iOS major versions",
|
|
81
|
-
"last 1 Explorer major version",
|
|
82
|
-
"last 1 ChromeAndroid version",
|
|
83
|
-
"last 1 UCAndroid version",
|
|
84
|
-
"last 1 Samsung version",
|
|
85
|
-
"last 1 OperaMini version",
|
|
86
|
-
"Firefox ESR",
|
|
87
|
-
">0.2%",
|
|
88
|
-
"not dead",
|
|
89
|
-
"not op_mini all"
|
|
90
|
-
],
|
|
91
|
-
"development": [
|
|
92
|
-
"last 1 chrome version",
|
|
93
|
-
"last 1 firefox version",
|
|
94
|
-
"last 1 safari version"
|
|
95
|
-
]
|
|
96
|
-
},
|
|
97
16
|
"keywords": [
|
|
98
17
|
"layer",
|
|
99
18
|
"popup",
|
|
@@ -114,51 +33,48 @@
|
|
|
114
33
|
"url": "https://www.patreon.com/passariello"
|
|
115
34
|
}
|
|
116
35
|
],
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"author": "Dario Passariello",
|
|
38
|
+
"contributors": [
|
|
39
|
+
{
|
|
40
|
+
"name": "Dario Passariello",
|
|
41
|
+
"email": "dariopassarielloa@gmail.com"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "Valeria Cala Scaglitta",
|
|
45
|
+
"email": "valeriacalascaglitta@gmail.com"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"main": "./index.js",
|
|
49
|
+
"types": "./index.d.ts",
|
|
50
|
+
"typings": "./types/*",
|
|
117
51
|
"scripts": {
|
|
118
|
-
"watch": "webpack --watch --progress --color --mode production --config webpack.ts",
|
|
119
52
|
"build": "webpack --progress --color --mode production --config webpack.ts",
|
|
120
|
-
"
|
|
53
|
+
"watch": "webpack --watch --progress --color --mode production --config webpack.ts",
|
|
121
54
|
"npm publish": "npm run build && cd dist && ls -al && npm publish"
|
|
122
55
|
},
|
|
123
|
-
"
|
|
124
|
-
"
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"react": "^19.2.4",
|
|
58
|
+
"react-dom": "^19.2.4"
|
|
125
59
|
},
|
|
126
|
-
"types": "./index.d.ts",
|
|
127
|
-
"typings": "./types/*",
|
|
128
|
-
"typing": [
|
|
129
|
-
"types/*"
|
|
130
|
-
],
|
|
131
60
|
"devDependencies": {
|
|
132
|
-
"@types/node": "^25.
|
|
61
|
+
"@types/node": "^25.3.0",
|
|
133
62
|
"@types/webpack-env": "1.18.8",
|
|
134
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
135
|
-
"@typescript-eslint/parser": "8.
|
|
63
|
+
"@typescript-eslint/eslint-plugin": "8.56.1",
|
|
64
|
+
"@typescript-eslint/parser": "8.56.1",
|
|
136
65
|
"copy-webpack-plugin": "^13.0.1",
|
|
137
|
-
"css-loader": "7.1.
|
|
66
|
+
"css-loader": "7.1.4",
|
|
138
67
|
"file-loader": "6.2.0",
|
|
139
|
-
"jquery": "4.0.0",
|
|
140
|
-
"react": "19.2.4",
|
|
141
|
-
"react-dom": "19.2.4",
|
|
142
68
|
"sass": "^1.97.3",
|
|
143
69
|
"sass-loader": "^16.0.7",
|
|
144
70
|
"style-loader": "^4.0.0",
|
|
145
71
|
"terser-webpack-plugin": "^5.3.16",
|
|
146
|
-
"ts-jest": "29.4.6",
|
|
147
72
|
"ts-loader": "^9.5.4",
|
|
148
73
|
"ts-node": "10.9.2",
|
|
149
74
|
"tslib": "^2.8.1",
|
|
150
75
|
"typescript": "5.9.3",
|
|
151
|
-
"webpack": "^5.105.
|
|
76
|
+
"webpack": "^5.105.2",
|
|
152
77
|
"webpack-cli": "6.0.1",
|
|
153
|
-
"webpack-dev-server": "^5.2.3"
|
|
154
|
-
"@babel/eslint-parser": "^7.28.6",
|
|
155
|
-
"@eslint/js": "9.39.2",
|
|
156
|
-
"@playwright/test": "1.58.2",
|
|
157
|
-
"@testing-library/jest-dom": "6.9.1",
|
|
158
|
-
"@testing-library/react": "16.3.2",
|
|
159
|
-
"@types/jest": "30.0.0",
|
|
160
|
-
"eslint": "9.39.2",
|
|
161
|
-
"jest": "30.2.0",
|
|
162
|
-
"jest-environment-jsdom": "30.2.0"
|
|
78
|
+
"webpack-dev-server": "^5.2.3"
|
|
163
79
|
}
|
|
164
80
|
}
|