-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "strapi-plugin-makepay",
"version": "0.1.0",
"description": "Strapi 5 server plugin for MakePay payment links and signed webhooks.",
"license": "MIT",
"author": "MakePay <info@makepay.io>",
"repository": {
"type": "git",
"url": "https://github.com/makecryptoio/makepay-strapi-plugin.git"
},
"bugs": {
"url": "https://github.com/makecryptoio/makepay-strapi-plugin/issues"
},
"homepage": "https://github.com/makecryptoio/makepay-strapi-plugin#readme",
"keywords": [
"strapi",
"strapi-plugin",
"makepay",
"payments",
"webhooks"
],
"type": "commonjs",
"main": "dist/server/index.js",
"files": [
"dist",
"server",
"README.md",
"LICENSE"
],
"strapi": {
"name": "makepay",
"displayName": "MakePay",
"description": "Create MakePay payment links and verify signed webhooks from Strapi."
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "tsx --test test/*.test.ts",
"validate": "node scripts/validate.mjs"
},
"peerDependencies": {
"@strapi/strapi": "^5.0.0"
},
"peerDependenciesMeta": {
"@strapi/strapi": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.18.0",
"tsx": "^4.20.0",
"typescript": "^5.9.0"
}
}