@scuro/sdk 0.1.0-beta.1

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,88 @@
1
+ {
2
+ "name": "@scuro/sdk",
3
+ "version": "0.1.0-beta.1",
4
+ "description": "Bun-first TypeScript SDK for the Scuro protocol",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "license": "MIT",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/zachdt/scuro-sdk.git"
13
+ },
14
+ "homepage": "https://github.com/zachdt/scuro-sdk",
15
+ "bugs": {
16
+ "url": "https://github.com/zachdt/scuro-sdk/issues"
17
+ },
18
+ "keywords": [
19
+ "scuro",
20
+ "ethereum",
21
+ "sdk",
22
+ "viem",
23
+ "bun",
24
+ "typescript"
25
+ ],
26
+ "engines": {
27
+ "bun": ">=1.3.0",
28
+ "node": ">=18.14.0"
29
+ },
30
+ "packageManager": "bun@1.3.8",
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "files": [
35
+ "dist",
36
+ "README.md"
37
+ ],
38
+ "sideEffects": false,
39
+ "exports": {
40
+ ".": {
41
+ "types": "./dist/index.d.ts",
42
+ "import": "./dist/index.js"
43
+ },
44
+ "./manifest": {
45
+ "types": "./dist/manifest.d.ts",
46
+ "import": "./dist/manifest.js"
47
+ },
48
+ "./registry": {
49
+ "types": "./dist/registry.d.ts",
50
+ "import": "./dist/registry.js"
51
+ },
52
+ "./contracts": {
53
+ "types": "./dist/contracts.d.ts",
54
+ "import": "./dist/contracts.js"
55
+ },
56
+ "./flows": {
57
+ "types": "./dist/flows.d.ts",
58
+ "import": "./dist/flows.js"
59
+ },
60
+ "./coordinator": {
61
+ "types": "./dist/coordinator.d.ts",
62
+ "import": "./dist/coordinator.js"
63
+ },
64
+ "./types": {
65
+ "types": "./dist/types.d.ts",
66
+ "import": "./dist/types.js"
67
+ }
68
+ },
69
+ "scripts": {
70
+ "generate-protocol": "node ./scripts/generate-protocol.mjs",
71
+ "build": "bun run generate-protocol && rm -rf dist && bun build ./src/index.ts ./src/manifest.ts ./src/registry.ts ./src/contracts.ts ./src/flows.ts ./src/coordinator.ts ./src/types.ts --outdir ./dist --target node --format esm && tsc -p tsconfig.build.json",
72
+ "typecheck": "bun run generate-protocol && tsc -p tsconfig.json --noEmit",
73
+ "test": "bun run generate-protocol && bun test",
74
+ "smoke:beta": "bun ./scripts/beta-rpc-smoke.ts",
75
+ "smoke:node": "node ./test/smoke-import.mjs",
76
+ "release:check": "bun run test && bun run typecheck && bun run build && node ./scripts/verify-release.mjs",
77
+ "release:pack": "mkdir -p .artifacts/releases && npm pack --pack-destination ./.artifacts/releases",
78
+ "prepack": "bun run build && node ./scripts/verify-release.mjs"
79
+ },
80
+ "dependencies": {
81
+ "viem": "^2.47.4"
82
+ },
83
+ "devDependencies": {
84
+ "@types/node": "^25.5.0",
85
+ "bun-types": "^1.3.10",
86
+ "typescript": "^5.9.3"
87
+ }
88
+ }