-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "apitoolkit-fastify",
"version": "2.6.1",
"description": "APIToolkit Fastify SDK",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts --fix",
"test": "jest --config jestconfig.json",
"format": "npx prettier --write .",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"updates": "npx npm-check-updates",
"updates:minor": "npx npm-check-updates --target minor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apitoolkit/apitoolkit-fastify.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/apitoolkit/apitoolkit-fastify/issues"
},
"homepage": "https://github.com/apitoolkit/apitoolkit-fastify#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/jsonpath": "^0.2.0",
"@types/node-fetch": "^2.6.4",
"@types/sync-fetch": "^0.4.3",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"jest": "^29.6.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@google-cloud/pubsub": "^3.7.1",
"apitoolkit-js": "^3.2.9",
"axios": "^1.6.8",
"fastify": "^4.19.2",
"jsonpath": "^1.1.1",
"node-fetch": "^2.6.7",
"sync-fetch": "^0.5.2",
"uuid": "^9.0.1"
}
}