-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.52 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
{
"name": "@axonlabs/payments",
"version": "0.2.0",
"description": "💳 Modular, type-safe payment gateway clients for Node.js apps — including Plisio and more soon. Built with TypeScript and fully ESM-compatible.",
"keywords": [
"Plisio",
"AxonJs"
],
"homepage": "https://github.com/AxonJsLabs/Payments#readme",
"bugs": {
"url": "https://github.com/AxonJsLabs/Payments/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AxonJsLabs/Payments.git"
},
"license": "MIT",
"author": {
"name": "Mr.MKZ",
"url": "https://github.com/Mr-MKZ"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./plisio": {
"types": "./dist/Plisio/index.d.ts",
"import": "./dist/Plisio/index.js",
"require": "./dist/Plisio/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"start": "tsup && node dist/index.js",
"build": "tsup",
"build:clean": "rm -rf dist && tsup",
"test": "jest",
"test:watch": "jest --watch",
"doc": "typedoc",
"changeset": "npx changeset",
"version": "npx changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.15",
"jest": "^30.0.4",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typedoc": "^0.28.7",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.10.0"
}
}