@sardis/ramp 0.1.0

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,87 @@
1
+ {
2
+ "name": "@sardis/ramp",
3
+ "version": "0.1.0",
4
+ "description": "Sardis Fiat Ramp SDK - Bridge crypto wallets to traditional banking with fiat on/off ramp functionality",
5
+ "type": "module",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./package.json": "./package.json"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md",
20
+ "LICENSE",
21
+ "CHANGELOG.md"
22
+ ],
23
+ "scripts": {
24
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
25
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
26
+ "test": "vitest run",
27
+ "test:watch": "vitest",
28
+ "lint": "eslint src/",
29
+ "typecheck": "tsc --noEmit",
30
+ "prepublishOnly": "npm run build && npm run test"
31
+ },
32
+ "keywords": [
33
+ "sardis",
34
+ "fiat",
35
+ "ramp",
36
+ "on-ramp",
37
+ "off-ramp",
38
+ "crypto",
39
+ "bridge",
40
+ "payments",
41
+ "ai-agents",
42
+ "banking",
43
+ "ach",
44
+ "wire",
45
+ "usdc",
46
+ "stablecoin",
47
+ "fintech"
48
+ ],
49
+ "author": "Sardis <support@sardis.network>",
50
+ "license": "MIT",
51
+ "repository": {
52
+ "type": "git",
53
+ "url": "git+https://github.com/sardis-network/sardis.git",
54
+ "directory": "packages/sardis-ramp-js"
55
+ },
56
+ "homepage": "https://sardis.network",
57
+ "bugs": {
58
+ "url": "https://github.com/sardis-network/sardis/issues"
59
+ },
60
+ "funding": {
61
+ "type": "github",
62
+ "url": "https://github.com/sponsors/sardis-network"
63
+ },
64
+ "dependencies": {},
65
+ "devDependencies": {
66
+ "@types/node": "^20.11.0",
67
+ "tsup": "^8.0.0",
68
+ "typescript": "^5.3.0",
69
+ "vitest": "^1.2.0"
70
+ },
71
+ "peerDependencies": {
72
+ "typescript": ">=4.7.0"
73
+ },
74
+ "peerDependenciesMeta": {
75
+ "typescript": {
76
+ "optional": true
77
+ }
78
+ },
79
+ "engines": {
80
+ "node": ">=18.0.0"
81
+ },
82
+ "publishConfig": {
83
+ "access": "public",
84
+ "registry": "https://registry.npmjs.org/"
85
+ },
86
+ "sideEffects": false
87
+ }