-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.61 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.61 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
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@alexasomba/paystack-node",
"version": "1.10.6",
"description": "The most comprehensive Node.js SDK for Paystack - Complete, Type-safe, and Spec-compliant with full OpenAPI coverage and webhook verification.",
"keywords": [
"africa",
"cote-divoire",
"egypt",
"fintech",
"ghana",
"ghs",
"idempotency",
"kenya",
"kes",
"ngn",
"nigeria",
"node",
"openapi",
"payments",
"paystack",
"rwanda",
"saas",
"sdk",
"south-africa",
"subscriptions",
"tanstack-intent",
"typescript",
"usd",
"webhooks",
"xof",
"zar"
],
"homepage": "https://github.com/alexasomba/paystack-node#readme",
"bugs": {
"url": "https://github.com/alexasomba/paystack-node/issues"
},
"license": "MIT",
"author": "alexasomba",
"repository": {
"type": "git",
"url": "https://github.com/alexasomba/paystack-node.git"
},
"files": [
"dist",
"skills",
"!skills/_artifacts"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./webhooks": {
"types": "./dist/webhooks.d.mts",
"import": "./dist/webhooks.mjs",
"default": "./dist/webhooks.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"generate:types": "openapi-typescript ./openapi.yaml -o src/openapi-types.ts",
"generate:operations": "node ./scripts/generate-operations.mjs",
"build": "pnpm generate:types && pnpm generate:operations && vp pack",
"dev": "vp pack --watch",
"test": "vp test run",
"coverage": "vp test run --coverage",
"lint": "vp lint . --fix",
"lint:package": "publint run --strict",
"lint:skills": "intent validate",
"lint:types": "npm_config_cache=/private/tmp/paystack-openapi-npm-cache attw --profile esm-only --pack .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"clean": "rm -rf dist",
"prepack": "pnpm build",
"publish:public": "pnpm publish --no-git-checks --access public"
},
"dependencies": {
"openapi-fetch": "^0.17.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@tanstack/intent": "^0.0.41",
"@types/node": "^24.12.3",
"openapi-typescript": "^7.13.0",
"publint": "^0.3.20",
"typescript": "^5.9.3",
"vite": "npm:@voidzero-dev/vite-plus-core@^0.1.20",
"vite-plus": "^0.1.20",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.20",
"yaml": "^2.8.4"
},
"engines": {
"node": ">=22.0.0"
}
}