@obelyzk/sdk 0.5.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,101 @@
1
+ {
2
+ "name": "@obelyzk/sdk",
3
+ "version": "0.5.0",
4
+ "description": "BitSage Network SDK - Client library for distributed compute, privacy swaps, and Obelysk encryption",
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
+ "./privacy": {
15
+ "types": "./dist/privacy/index.d.ts",
16
+ "import": "./dist/privacy/index.mjs",
17
+ "require": "./dist/privacy/index.js"
18
+ },
19
+ "./react": {
20
+ "types": "./dist/react/index.d.ts",
21
+ "import": "./dist/react/index.mjs",
22
+ "require": "./dist/react/index.js"
23
+ },
24
+ "./obelysk": {
25
+ "types": "./dist/obelysk/index.d.ts",
26
+ "import": "./dist/obelysk/index.mjs",
27
+ "require": "./dist/obelysk/index.js"
28
+ }
29
+ },
30
+ "license": "MIT",
31
+ "bin": {
32
+ "bitsage-demo": "./bin/bitsage-demo.ts"
33
+ },
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/Bitsage-Network/bitsage-sdk"
37
+ },
38
+ "keywords": [
39
+ "bitsage",
40
+ "zkml",
41
+ "distributed-compute",
42
+ "starknet",
43
+ "web3",
44
+ "react",
45
+ "elgamal",
46
+ "privacy",
47
+ "obelysk",
48
+ "stwo",
49
+ "zero-knowledge",
50
+ "gpu",
51
+ "cuda",
52
+ "h100",
53
+ "proof-generation",
54
+ "zk-proofs"
55
+ ],
56
+ "scripts": {
57
+ "build": "tsup src/index.ts src/privacy/index.ts src/react/index.ts src/obelysk/index.ts --format cjs,esm --dts",
58
+ "dev": "tsup src/index.ts src/privacy/index.ts src/react/index.ts src/obelysk/index.ts --format cjs,esm --dts --watch",
59
+ "lint": "eslint src/",
60
+ "test": "vitest",
61
+ "test:run": "vitest run",
62
+ "test:coverage": "vitest run --coverage",
63
+ "prepublishOnly": "npm run build"
64
+ },
65
+ "dependencies": {
66
+ "starknet": "^6.0.0"
67
+ },
68
+ "peerDependencies": {
69
+ "react": ">=18.0.0"
70
+ },
71
+ "peerDependenciesMeta": {
72
+ "react": {
73
+ "optional": true
74
+ }
75
+ },
76
+ "devDependencies": {
77
+ "@types/node": "^20.0.0",
78
+ "@types/react": "^18.0.0",
79
+ "@vitest/coverage-v8": "^1.0.0",
80
+ "eslint": "^8.0.0",
81
+ "react": "^18.0.0",
82
+ "tsup": "^8.0.0",
83
+ "typescript": "^5.0.0",
84
+ "vitest": "^1.0.0"
85
+ },
86
+ "engines": {
87
+ "node": ">=18.0.0"
88
+ },
89
+ "files": [
90
+ "dist",
91
+ "README.md"
92
+ ],
93
+ "publishConfig": {
94
+ "access": "public",
95
+ "registry": "https://registry.npmjs.org/"
96
+ },
97
+ "homepage": "https://bitsage.network",
98
+ "bugs": {
99
+ "url": "https://github.com/Bitsage-Network/bitsage-network/issues"
100
+ }
101
+ }