@loopprotocol/sdk-byoaa 0.1.0-alpha.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,65 @@
1
+ {
2
+ "name": "@loopprotocol/sdk-byoaa",
3
+ "version": "0.1.0-alpha.0",
4
+ "description": "Bring Your Own Attested Agent — TypeScript SDK for submitting bank-attested receipts to Loop Protocol from inside an attested enclave.",
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
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE",
19
+ "CHANGELOG.md"
20
+ ],
21
+ "sideEffects": false,
22
+ "engines": {
23
+ "node": ">=18"
24
+ },
25
+ "scripts": {
26
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
27
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
28
+ "test": "vitest run",
29
+ "test:watch": "vitest",
30
+ "typecheck": "tsc --noEmit",
31
+ "smoke:devnet": "tsx scripts/devnet-smoke.ts",
32
+ "clean": "rm -rf dist",
33
+ "prepublishOnly": "npm run clean && npm run typecheck && npm run test && npm run build"
34
+ },
35
+ "keywords": [
36
+ "loop-protocol",
37
+ "byoaa",
38
+ "attested-agent",
39
+ "solana",
40
+ "nitro-enclave",
41
+ "agent-attestation"
42
+ ],
43
+ "author": "Loop Protocol",
44
+ "license": "MIT",
45
+ "publishConfig": {
46
+ "access": "public"
47
+ },
48
+ "peerDependencies": {
49
+ "@coral-xyz/anchor": "^0.32.0",
50
+ "@solana/web3.js": "^1.98.0"
51
+ },
52
+ "dependencies": {
53
+ "@loopprotocol/sdk": "^0.1.0"
54
+ },
55
+ "devDependencies": {
56
+ "@coral-xyz/anchor": "^0.32.1",
57
+ "@solana/web3.js": "^1.98.4",
58
+ "@types/node": "^20.0.0",
59
+ "tsup": "^8.0.0",
60
+ "tsx": "^4.21.0",
61
+ "tweetnacl": "^1.0.3",
62
+ "typescript": "^5.0.0",
63
+ "vitest": "^1.0.0"
64
+ }
65
+ }