@sardis/ramp 0.1.4 → 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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +11 -12
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/sardis)
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.1.4",
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",
@@ -79,5 +70,13 @@
79
70
  "access": "public",
80
71
  "registry": "https://registry.npmjs.org/"
81
72
  },
82
- "sideEffects": false
83
- }
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
+ }