-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 913 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
35
36
37
38
39
40
{
"name": "throw-http",
"repository": "https://github.com/flodlc/throw-http",
"author": "flodlc <[email protected]>",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"packageManager": "[email protected]",
"version": "1.0.4",
"scripts": {
"dev": "tsup src/index.ts --watch",
"typecheck": "tsc",
"build": "tsup src/index.ts --dts",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check ."
},
"dependencies": {},
"devDependencies": {
"@types/node": "^18.7.16",
"tsup": "^6.2.3",
"typescript": "^5.0.4"
},
"files": [
"dist/*"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"keywords": [
"http",
"errors",
"node"
]
}