wallet-abi-sdk-alpha 0.0.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 BlockstreamResearch
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # wallet-abi-sdk-alpha
package/dist/index.cjs ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.packageName = void 0;
4
+ exports.packageName = "wallet-abi-sdk-alpha";
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAa,QAAA,WAAW,GAAG,sBAA+B,CAAC"}
@@ -0,0 +1 @@
1
+ export declare const packageName: "wallet-abi-sdk-alpha";
@@ -0,0 +1 @@
1
+ export declare const packageName: "wallet-abi-sdk-alpha";
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export const packageName = "wallet-abi-sdk-alpha";
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG,sBAA+B,CAAC"}
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "wallet-abi-sdk-alpha",
3
+ "version": "0.0.1",
4
+ "description": "Alpha scaffold for the wallet ABI SDK package.",
5
+ "type": "module",
6
+ "packageManager": "bun@1.3.10",
7
+ "engines": {
8
+ "node": ">=24"
9
+ },
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "sideEffects": false,
14
+ "keywords": [
15
+ "wallet",
16
+ "abi",
17
+ "sdk"
18
+ ],
19
+ "license": "MIT",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/BlockstreamResearch/wallet-abi-sdk.git"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/BlockstreamResearch/wallet-abi-sdk/issues"
26
+ },
27
+ "homepage": "https://github.com/BlockstreamResearch/wallet-abi-sdk#readme",
28
+ "publishConfig": {
29
+ "access": "public",
30
+ "provenance": true
31
+ },
32
+ "scripts": {
33
+ "lint": "eslint .",
34
+ "lint:fix": "eslint . --fix",
35
+ "format": "prettier . --write",
36
+ "format:check": "prettier . --check",
37
+ "test": "bun test",
38
+ "typecheck": "tsc --project tsconfig.json --noEmit",
39
+ "build": "zshy && node ./scripts/fix-package-json.mjs",
40
+ "prepack": "bun run build",
41
+ "pack:check": "bun pm pack --dry-run",
42
+ "lint:package": "publint .",
43
+ "attw": "attw --pack . --profile strict",
44
+ "smoke:pack": "node ./scripts/smoke-pack.mjs",
45
+ "check": "bun run lint && bun run format:check && bun run typecheck && bun run test && bun run build && bun run lint:package && bun run attw && bun run pack:check && bun run smoke:pack"
46
+ },
47
+ "zshy": "./src/index.ts",
48
+ "devDependencies": {
49
+ "@arethetypeswrong/cli": "^0.18.2",
50
+ "@eslint/js": "^9.39.3",
51
+ "@types/bun": "^1.3.10",
52
+ "eslint": "^9.39.3",
53
+ "eslint-config-prettier": "^10.1.8",
54
+ "prettier": "^3.8.1",
55
+ "publint": "^0.3.18",
56
+ "typescript": "^5.9.3",
57
+ "typescript-eslint": "^8.56.1",
58
+ "zshy": "^0.7.0"
59
+ },
60
+ "main": "./dist/index.cjs",
61
+ "module": "./dist/index.js",
62
+ "types": "./dist/index.d.ts",
63
+ "exports": {
64
+ ".": {
65
+ "import": {
66
+ "types": "./dist/index.d.ts",
67
+ "default": "./dist/index.js"
68
+ },
69
+ "require": {
70
+ "types": "./dist/index.d.cts",
71
+ "default": "./dist/index.cjs"
72
+ },
73
+ "default": "./dist/index.js"
74
+ }
75
+ }
76
+ }