-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.03 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
{
"name": "paystack-sdk-node",
"version": "0.8.0",
"description": "Type-safe, modern TypeScript SDK for the Paystack API. Includes first-class support for Express, NestJS, Next.js, and Fastify.",
"module": "src/index.ts",
"type": "module",
"author": "Benson Samaasi <dev.bensonsamaasi@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:samaasi/paystack-sdk-node.git"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "bun test",
"lint": "eslint src/**/*.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@nestjs/common": "^10.0.0",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"express": "^4.18.2",
"prettier": "^3.8.0",
"tsup": "latest",
"typescript": "latest"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./express": {
"types": "./dist/express.d.ts",
"import": "./dist/express.js",
"require": "./dist/express.cjs"
},
"./nestjs": {
"types": "./dist/nestjs.d.ts",
"import": "./dist/nestjs.js",
"require": "./dist/nestjs.cjs"
},
"./webhooks": {
"types": "./dist/webhooks.d.ts",
"import": "./dist/webhooks.js",
"require": "./dist/webhooks.cjs"
},
"./fastify": {
"types": "./dist/fastify.d.ts",
"import": "./dist/fastify.js",
"require": "./dist/fastify.cjs"
},
"./nextjs": {
"types": "./dist/nextjs.d.ts",
"import": "./dist/nextjs.js",
"require": "./dist/nextjs.cjs"
}
},
"peerDependencies": {
"express": ">=4",
"@nestjs/common": ">=10",
"typescript": "^5"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"@nestjs/common": {
"optional": true
}
}
}