-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "payment-templates",
"version": "1.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"payment-templates": "bin/payment.ts"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"postinstall": "echo 'Payment Templates CLI installed successfully!'"
},
"keywords": [
"payment",
"template",
"cli",
"backend",
"express",
"typescript",
"stripe",
"razorpay"
],
"author": "Avik Mukherjee",
"license": "ISC",
"description": "A CLI tool for adding payment method templates to your Backend express Project.",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"homepage": "https://github.com/Avik-creator/payment-templates-package",
"repository": {
"type": "git",
"url": "git+https://github.com/Avik-creator/payment-templates-package.git"
},
"bugs": {
"url": "https://github.com/Avik-creator/payment-templates-package/issues",
"email": "[email protected]"
},
"dependencies": {
"commander": "^12.1.0"
},
"directories": {
"bin": "bin",
"templates": "bin/templates"
}
}