-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.89 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.89 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@peekapi/sdk-node",
"version": "0.1.0",
"description": "Node.js SDK for PeekAPI — one-line API analytics",
"keywords": [
"analytics",
"api",
"express",
"fastify",
"hapi",
"koa",
"middleware",
"monitoring",
"nestjs",
"observability",
"peekapi"
],
"homepage": "https://github.com/peekapi-dev/sdk-node#readme",
"bugs": {
"url": "https://github.com/peekapi-dev/community/issues"
},
"license": "MIT",
"author": "PeekAPI <support@peekapi.dev> (https://peekapi.dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/peekapi-dev/sdk-node.git"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run --exclude dist",
"test:watch": "vitest"
},
"devDependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hapi": "^21.4.0",
"@types/express": "^5.0.6",
"@types/koa": "^2.15.0",
"@types/koa__router": "^12.0.4",
"@types/node": "^22.10.0",
"@types/supertest": "^6.0.3",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.0",
"koa": "^3.1.1",
"oxlint": "^1.0.0",
"rxjs": "^7.8.0",
"supertest": "^7.2.2",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@hapi/hapi": ">=21.0.0",
"express": ">=4.0.0",
"fastify": ">=4.0.0",
"fastify-plugin": ">=4.0.0",
"koa": ">=2.0.0",
"rxjs": ">=7.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"fastify": {
"optional": true
},
"fastify-plugin": {
"optional": true
},
"koa": {
"optional": true
},
"@hapi/hapi": {
"optional": true
},
"rxjs": {
"optional": true
}
}
}