-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "await-protect",
"version": "1.0.18",
"description": "Concise error handling when using await on promises.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:test": "pnpm run test && pnpm run clean && pnpm run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nihiluis/await-protect.git"
},
"keywords": [
"error"
],
"author": "nihiluis",
"license": "MIT",
"bugs": {
"url": "https://github.com/nihiluis/await-protect/issues"
},
"homepage": "https://github.com/nihiluis/await-protect#readme",
"peerDependencies": {
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.10.10",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.21.0",
"vitest": "^3.0.4"
},
"files": [
"dist"
]
}