-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "@byteshift/harmony",
"version": "1.4.1",
"description": "A zero-dependency, fully featured, HTTP server micro-framework",
"author": "Harold Iedema <[email protected]>",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/node": "^16.11.45",
"reflect-metadata": "^0.1.13",
"rollup": "^2.77.0",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"keywords": [
"byteshift",
"http",
"https",
"http2",
"jsx",
"ssr",
"events",
"hackable",
"server",
"controller",
"cookie",
"cookies"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/haroldiedema/byteshift-harmony/issues"
},
"homepage": "https://github.com/haroldiedema/byteshift-harmony/wiki",
"repository": {
"type": "git",
"url": "git+https://github.com/haroldiedema/byteshift-harmony.git"
}
}