forked from tomphttp/bare-server-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.26 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
49
50
51
52
53
54
55
56
57
{
"name": "@tomphttp/bare-server-node",
"description": "The Bare Server implementation in NodeJS.",
"version": "1.2.0",
"homepage": "https://github.com/tomphttp",
"bugs": {
"url": "https://github.com/tomphttp/bare-server-node/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/tomphttp/bare-server-node.git"
},
"author": {
"name": "TOMP Development",
"email": "[email protected]",
"url": "https://github.com/tomphttp"
},
"keywords": [
"proxy",
"tomp",
"tomphttp"
],
"license": "GPL-3.0",
"type": "commonjs",
"main": "dist/createServer.js",
"types": "dist/createServer.d.ts",
"files": [
"dist",
"bin.js"
],
"engines": {
"node": ">=16.0.0"
},
"bin": "bin.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch"
},
"dependencies": {
"commander": "^9.0.0",
"dotenv": "^16.0.2",
"headers-polyfill": "3.0.9",
"http-errors": "^2.0.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.4.2",
"@types/http-errors": "^1.8.2",
"@types/node": "^18.7.20",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.24.0",
"prettier": "^2.7.1",
"resolve-typescript-plugin": "^1.2.0",
"typescript": "^4.8.3"
}
}