@sikka/aps 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@sikka/aps",
3
+ "version": "0.0.1",
4
+ "description": "A Stripe-like developer-friendly SDK for Amazon Payment Services integration. Supports payment links, hosted checkout, tokenization, webhooks, and payment management.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ },
14
+ "./react": {
15
+ "types": "./dist/react/index.d.ts",
16
+ "import": "./dist/react/index.mjs",
17
+ "require": "./dist/react/index.js"
18
+ }
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md"
23
+ ],
24
+ "scripts": {
25
+ "build": "pnpm build:main && pnpm build:react",
26
+ "build:main": "tsup src/index.ts --format cjs,esm --dts --out-dir dist",
27
+ "build:react": "tsup src/react/index.ts --format cjs,esm --dts --out-dir dist/react --external react",
28
+ "dev": "tsup src/index.ts src/react/index.ts --format cjs,esm --dts --watch",
29
+ "typecheck": "tsc --noEmit",
30
+ "prepublishOnly": "pnpm build"
31
+ },
32
+ "keywords": [
33
+ "amazon-payment-services",
34
+ "aps",
35
+ "payfort",
36
+ "payment",
37
+ "checkout",
38
+ "payment-link",
39
+ "hosted-checkout",
40
+ "tokenization",
41
+ "stripe",
42
+ "saudi-arabia",
43
+ "uae",
44
+ "middle-east",
45
+ "mada",
46
+ "knet",
47
+ "naps",
48
+ "fawry",
49
+ "apple-pay",
50
+ "react"
51
+ ],
52
+ "author": "",
53
+ "license": "MIT",
54
+ "repository": {
55
+ "type": "git",
56
+ "url": "https://github.com/sikka-software/amazon-payment-services.git"
57
+ },
58
+ "bugs": {
59
+ "url": "https://github.com/sikka-software/amazon-payment-services/issues"
60
+ },
61
+ "homepage": "https://github.com/sikka-software/amazon-payment-services#readme",
62
+ "devDependencies": {
63
+ "@types/node": "^20.19.35",
64
+ "@types/react": "^19.0.0",
65
+ "crypto-js": "^4.2.0",
66
+ "react": "^19.0.0",
67
+ "tsup": "^8.5.1",
68
+ "typescript": "^5.9.3"
69
+ },
70
+ "peerDependencies": {
71
+ "crypto-js": "^4.2.0",
72
+ "react": "^18.0.0 || ^19.0.0"
73
+ },
74
+ "engines": {
75
+ "node": ">=16.0.0"
76
+ }
77
+ }