northstar-eva-sdk 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,45 @@
1
+ {
2
+ "name": "northstar-eva-sdk",
3
+ "version": "0.1.0",
4
+ "description": "Run the eva program on a NorthStar ephemeral rollup (zero-fee hot path). A high-level class SDK over the NorthStar Portal/ER protocol + the eva Anchor program. Works localnet & devnet.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "keywords": ["solana", "northstar", "ephemeral-rollup", "eva", "sonic", "sdk", "portal"],
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/mirrorworld-universe/northstar-eva-sdk.git"
11
+ },
12
+ "main": "./dist/northstar-eva-sdk.js",
13
+ "types": "./dist/northstar-eva-sdk.d.ts",
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/northstar-eva-sdk.d.ts",
17
+ "import": "./dist/northstar-eva-sdk.js"
18
+ }
19
+ },
20
+ "files": ["dist", "README.md"],
21
+ "engines": {
22
+ "node": ">=18"
23
+ },
24
+ "sideEffects": false,
25
+ "scripts": {
26
+ "bundle": "node --experimental-strip-types scripts/bundle-single-file.ts",
27
+ "build": "npm run bundle && tsc -p tsconfig.publish.json",
28
+ "typecheck": "tsc --noEmit",
29
+ "test": "node --experimental-strip-types --test test/amm.test.ts test/codec.test.ts test/decode.test.ts",
30
+ "test:integration": "node --experimental-strip-types test/integration.test.ts",
31
+ "prepublishOnly": "npm run build"
32
+ },
33
+ "peerDependencies": {
34
+ "@coral-xyz/anchor": "^0.31 || ^0.32",
35
+ "@solana/spl-token": "^0.4",
36
+ "@solana/web3.js": "^1.95"
37
+ },
38
+ "devDependencies": {
39
+ "@coral-xyz/anchor": "^0.32.1",
40
+ "@solana/spl-token": "^0.4.9",
41
+ "@solana/web3.js": "^1.95.8",
42
+ "@types/node": "^22.10.0",
43
+ "typescript": "^5.7.2"
44
+ }
45
+ }