@pragma-sh/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": "@pragma-sh/sdk",
3
+ "version": "0.1.0",
4
+ "description": "Typed TypeScript wrapper SDK for the Pragma CLI.",
5
+ "homepage": "https://github.com/pragma-sh/pragma#readme",
6
+ "bugs": "https://github.com/pragma-sh/pragma/issues",
7
+ "license": "AGPL-3.0-only",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/pragma-sh/pragma.git",
11
+ "directory": "packages/sdk"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "type": "module",
17
+ "main": "./dist/index.cjs",
18
+ "module": "./dist/index.js",
19
+ "types": "./dist/index.d.ts",
20
+ "exports": {
21
+ ".": {
22
+ "types": "./dist/index.d.ts",
23
+ "import": "./dist/index.js",
24
+ "require": "./dist/index.cjs"
25
+ },
26
+ "./package.json": "./package.json"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
31
+ "scripts": {
32
+ "build": "bunup src/index.ts --format esm,cjs --target node --dts",
33
+ "typecheck": "tsc --noEmit",
34
+ "test": "bun --bun vitest run",
35
+ "lint": "oxlint ."
36
+ },
37
+ "devDependencies": {
38
+ "@pragma-sh/constants": "workspace:*",
39
+ "@pragma-sh/scratchpad-contract": "workspace:*",
40
+ "@types/node": "^24.10.1",
41
+ "bunup": "^0.16.32",
42
+ "typescript": "^6.0.3",
43
+ "vitest": "^4.1.8"
44
+ }
45
+ }