-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.8 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "simpay-typescript-api",
"author": "Rafał Więcek <r.wiecek@simpay.pl> (https://github.com/DarkGL)",
"version": "3.1.0",
"description": "SimPay.pl API wrapper",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"ci": "npm run build && npm run check && npm run check-exports && npm run test",
"lint": "npx @biomejs/biome lint --write ./src",
"format": "npx @biomejs/biome format --write ./src",
"check": "npx @biomejs/biome check --write ./src",
"build": "tsc --build",
"test": "npm run build && vitest run",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"keywords": [
"simpay",
"payment",
"db",
"api",
"directbilling",
"sms",
"simpay.pl",
"payments",
"payment-gateway",
"payment-gateways",
"payment-api",
"direct-billing",
"sms-payment",
"sms-payments",
"db-payment",
"db-payments",
"payment-integration",
"online-payments",
"mobile-payments",
"payment-sdk",
"payment-service"
],
"license": "MIT",
"dependencies": {
"axios": "^1.7.9"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.11",
"@types/node": "^22.10.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimPaypl/SimPay-API-TypeScript.git"
},
"bugs": {
"url": "https://github.com/SimPaypl/SimPay-API-TypeScript/issues"
},
"homepage": "https://github.com/SimPaypl/SimPay-API-TypeScript#readme",
"files": [
"dist"
],
"engines": {
"node": ">=20.17.0"
}
}