-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 824 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "asynchronous-error-handling",
"description": "Demonstration of asynchronous error handling in JavaScript",
"version": "0.0.2",
"type": "module",
"exports": "./dist/index.js",
"private": true,
"author": {
"name": "Liam Lage",
"email": "liamlage@outlook.com"
},
"license": "UNLICENSED",
"engines": {
"node": ">=22.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/liamlagezyxis/async-error-handling"
},
"bugs": {
"url": "https://github.com/liamlagezyxis/async-error-handling/issues",
"email": "liamlage@outlook.com"
},
"scripts": {
"test:types": "tsc --noEmit",
"build": "tsc",
"dev": "tsc --watch",
"postinstall": "npm run build"
},
"devDependencies": {
"@types/node": "^22.10.1",
"typescript": "^5.7.2"
}
}