-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
63 lines (63 loc) · 1.61 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
58
59
60
61
62
63
{
"name": "@tomphttp/bare-server-worker",
"description": "The Bare Server implementation in Cloudflare Workers.",
"version": "1.2.2",
"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",
"private": true,
"files": [
"dist",
"bin.js"
],
"scripts": {
"start": "npx miniflare dist/sw.js",
"build": "rollup -c",
"build:watch": "rollup -cw"
},
"dependencies": {
"async-exit-hook": "^2.0.1",
"commander": "^9.4.1",
"dotenv": "^16.0.3",
"http-errors": "^2.0.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"@ianvs/prettier-plugin-sort-imports": "^3.7.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/async-exit-hook": "^2.0.0",
"@types/http-errors": "^2.0.1",
"@types/source-map-support": "^0.5.6",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"prettier": "^2.8.1",
"rollup": "^2.77.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.9.4"
}
}