-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.3 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
{
"name": "@0x0pharaoh/next-paystack",
"version": "1.0.1",
"description": "This is an nextJS library for implementing paystack payment gateway",
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"jsnext:main": "dist/index.es.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build:types": "tsc -p tsconfig.build.json",
"build": "npm run build:types && rollup -c",
"build:watch": "rollup -c --watch",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --env=jsdom --runInBand",
"test:watch": "jest --watch --verbose --env=jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0x0pharaoh/next-paystack"
},
"keywords": [
"Javascript",
"github",
"NextJs",
"Open Source",
"payments",
"paystack",
"Gateway"
],
"author": "Olusegun Ayeni <nsegun5@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/0x0pharaoh/next-paystack/issues"
},
"homepage": "https://github.com/0x0pharaoh/next-paystack?tab=readme-ov-file",
"peerDependencies": {
"next": "^16.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@paystack/inline-js": "^2.19.2"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.7.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^3.3.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rollup": "^4.20.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
}
}