@sardis/ramp 0.1.3 → 1.0.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/README.md +1 -1
- package/package.json +11 -16
package/README.md
CHANGED
|
@@ -459,7 +459,7 @@ import type {
|
|
|
459
459
|
|
|
460
460
|
- [Documentation](https://docs.sardis.network)
|
|
461
461
|
- [GitHub Issues](https://github.com/sardis-network/sardis/issues)
|
|
462
|
-
- [Discord Community](https://discord.gg/
|
|
462
|
+
- [Discord Community](https://discord.gg/XMA9JwDJ)
|
|
463
463
|
|
|
464
464
|
## License
|
|
465
465
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sardis/ramp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Sardis Fiat Ramp SDK - Bridge crypto wallets to traditional banking with fiat on/off ramp functionality",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -20,15 +20,6 @@
|
|
|
20
20
|
"LICENSE",
|
|
21
21
|
"CHANGELOG.md"
|
|
22
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
23
|
"keywords": [
|
|
33
24
|
"sardis",
|
|
34
25
|
"fiat",
|
|
@@ -57,10 +48,6 @@
|
|
|
57
48
|
"bugs": {
|
|
58
49
|
"url": "https://github.com/EfeDurmaz16/sardis/issues"
|
|
59
50
|
},
|
|
60
|
-
"funding": {
|
|
61
|
-
"type": "github",
|
|
62
|
-
"url": "https://github.com/sponsors/EfeDurmaz16"
|
|
63
|
-
},
|
|
64
51
|
"dependencies": {},
|
|
65
52
|
"devDependencies": {
|
|
66
53
|
"@types/node": "^20.11.0",
|
|
@@ -83,5 +70,13 @@
|
|
|
83
70
|
"access": "public",
|
|
84
71
|
"registry": "https://registry.npmjs.org/"
|
|
85
72
|
},
|
|
86
|
-
"sideEffects": false
|
|
87
|
-
|
|
73
|
+
"sideEffects": false,
|
|
74
|
+
"scripts": {
|
|
75
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
76
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
77
|
+
"test": "vitest run",
|
|
78
|
+
"test:watch": "vitest",
|
|
79
|
+
"lint": "eslint src/",
|
|
80
|
+
"typecheck": "tsc --noEmit"
|
|
81
|
+
}
|
|
82
|
+
}
|