-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (51 loc) · 1.16 KB
/
package.json
File metadata and controls
52 lines (51 loc) · 1.16 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
{
"name": "@hyperpay/hyperpay-ptsp",
"version": "1.0.0",
"description": "Official Hyperpay PTSP TypeScript/Node.js client for creating payment links and managing transactions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"example:basic": "ts-node examples/basic.ts",
"example:express": "ts-node examples/express-demo.ts",
"dev": "tsc --watch"
},
"keywords": [
"hyperpay",
"ptsp",
"payment",
"payment-link",
"gateway",
"typescript",
"nodejs"
],
"author": "Hyperpay",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HyperpayOpenSource/hyperpay-ptsp-nodejs"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/express": "^4.17.21",
"express": "^4.18.2",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
},
"peerDependencies": {
"express": "^4.18.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
}
}
}