@rialo/ts-cdk 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,72 @@
1
+ {
2
+ "name": "@rialo/ts-cdk",
3
+ "version": "0.1.0",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "description": "Rialo CDK - A comprehensive toolkit for building with the Rialo blockchain",
8
+ "license": "Apache-2.0",
9
+ "author": "Subzero Labs",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/SubzeroLabs/rialo.git"
13
+ },
14
+ "main": "dist/index.js",
15
+ "module": "dist/index.mjs",
16
+ "types": "dist/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "import": "./dist/index.mjs",
21
+ "require": "./dist/index.js"
22
+ }
23
+ },
24
+
25
+ "files": [
26
+ "dist",
27
+ "README.md",
28
+ "LICENSE"
29
+ ],
30
+ "scripts": {
31
+ "build": "tsup",
32
+ "dev": "tsup --watch",
33
+ "test": "vitest run",
34
+ "test:cross-platform": "vitest run tests/cross-platform.test.ts",
35
+ "test:coverage": "vitest --coverage",
36
+ "lint": "biome lint .",
37
+ "format": "biome format . --write",
38
+ "check": "biome check .",
39
+ "typecheck": "tsc --noEmit",
40
+ "clean": "rm -rf node_modules dist"
41
+ },
42
+ "dependencies": {
43
+ "@dao-xyz/borsh": "^5.2.4",
44
+ "@noble/curves": "^2.0.1",
45
+ "@noble/ed25519": "^3.0.0",
46
+ "@noble/hashes": "2.0.0",
47
+ "@scure/base": "^2.0.0",
48
+ "@scure/bip32": "^2.0.1",
49
+ "@scure/bip39": "^2.0.1",
50
+ "ed25519-hd-key": "^1.3.0"
51
+ },
52
+ "devDependencies": {
53
+ "@biomejs/biome": "^1.9.4",
54
+ "@types/node": "^22.10.5",
55
+ "tsup": "^8.3.5",
56
+ "tsx": "^4.20.6",
57
+ "typescript": "^5.7.2",
58
+ "vitest": "^4.0.4"
59
+ },
60
+ "keywords": [
61
+ "rialo",
62
+ "blockchain",
63
+ "wallet",
64
+ "transaction",
65
+ "rpc",
66
+ "cdk",
67
+ "crypto"
68
+ ],
69
+ "engines": {
70
+ "node": ">=18.0.0"
71
+ }
72
+ }