await-me 1.0.5 → 1.0.7
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/package.json +9 -15
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "await-me",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "Production-ready, zero-dependency declarative async error handling for JavaScript & Node.js. Browser-compatible wrapper for await-me-ts.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -10,6 +10,10 @@
|
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">=7.0.0"
|
|
12
12
|
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsup",
|
|
15
|
+
"release": "npm run build && npm version patch && npm publish"
|
|
16
|
+
},
|
|
13
17
|
"browserslist": [
|
|
14
18
|
"defaults and fully supports es6-module",
|
|
15
19
|
"maintained node versions",
|
|
@@ -27,20 +31,10 @@
|
|
|
27
31
|
"legacy-support",
|
|
28
32
|
"promises"
|
|
29
33
|
],
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
"types": "./dist/index.d.ts",
|
|
33
|
-
"import": "./dist/index.js",
|
|
34
|
-
"require": "./dist/index.cjs",
|
|
35
|
-
"script": "./dist/index.global.js"
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
"scripts": {
|
|
39
|
-
"build": "tsup",
|
|
40
|
-
"release": "npm run build && npm version patch && npm publish"
|
|
41
|
-
},
|
|
34
|
+
"author": "311ecode",
|
|
35
|
+
"license": "MIT",
|
|
42
36
|
"dependencies": {
|
|
43
|
-
"await-me-ts": "^1.0.
|
|
37
|
+
"await-me-ts": "^1.0.2"
|
|
44
38
|
},
|
|
45
39
|
"devDependencies": {
|
|
46
40
|
"tsup": "^8.5.1",
|