generated from curveball/new-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.34 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": "@curveball/links",
"version": "1.0.1",
"description": "Weblinking Middelware for curveball",
"type": "module",
"exports": "./dist/index.js",
"homepage": "https://github.com/curveball/links#readme",
"bugs": {
"url": "https://github.com/curveball/links/issues"
},
"keywords": [
"http",
"framework",
"nodejs",
"typescript",
"push",
"http2",
"curveball"
],
"author": "Evert Pot (https://evertpot.com/)",
"license": "MIT",
"scripts": {
"prepublishOnly": "make build",
"test": "make test",
"lint": "make lint",
"fix": "make fix",
"tsc": "tsc",
"start": "make start",
"build": "make build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curveball/links.git"
},
"dependencies": {
"@types/http-link-header": "^1.0.2",
"hal-types": "^1.2.1",
"http-link-header": "^1.0.3"
},
"peerDependencies": {
"@curveball/kernel": "^1"
},
"devDependencies": {
"@curveball/bodyparser": "^1.0.0",
"@curveball/kernel": "^1.0.0",
"@eslint/js": "^9.14.0",
"@types/node": "^18.19.64",
"sinon": "^17.0.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"engines": {
"node": ">= 18"
},
"files": [
"package.json",
"README.md",
"dist",
"LICENSE",
"src"
]
}