@agenticprimitives/account-custody 0.1.0-alpha.2

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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,sDAAsD;AACtD,qEAAqE;AACrE,4BAA4B;AAyD5B,MAAM,CAAC,MAAM,qBAAqB,GAAuC;IACvE,CAAC,EAAE,QAAQ;IACX,CAAC,EAAE,QAAQ;IACX,CAAC,EAAE,WAAW;IACd,CAAC,EAAE,KAAK;CACT,CAAC"}
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@agenticprimitives/account-custody",
3
+ "version": "0.1.0-alpha.2",
4
+ "description": "Custody-layer SDK: CustodyPolicy ABI, CustodyAction enum + arg builders, EIP-712 typed-data helpers, and Custodian/Trustee/CustodyCouncil types. Speaks custody-domain vocabulary only \u2014 no delegation / steward / caveat concepts (those belong in @agenticprimitives/delegation).",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/agentictrustlabs/agenticprimitives.git",
9
+ "directory": "packages/account-custody"
10
+ },
11
+ "homepage": "https://github.com/agentictrustlabs/agenticprimitives/tree/master/packages/account-custody",
12
+ "bugs": {
13
+ "url": "https://github.com/agentictrustlabs/agenticprimitives/issues"
14
+ },
15
+ "type": "module",
16
+ "main": "./dist/index.js",
17
+ "types": "./dist/index.d.ts",
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/index.js"
22
+ }
23
+ },
24
+ "files": [
25
+ "LICENSE",
26
+ "dist",
27
+ "spec.md",
28
+ "README.md"
29
+ ],
30
+ "scripts": {
31
+ "build": "tsc -p tsconfig.build.json",
32
+ "typecheck": "tsc -p tsconfig.json --noEmit",
33
+ "test": "vitest run",
34
+ "test:watch": "vitest",
35
+ "clean": "rm -rf dist"
36
+ },
37
+ "publishConfig": {
38
+ "access": "public"
39
+ },
40
+ "peerDependencies": {
41
+ "@agenticprimitives/types": "workspace:*",
42
+ "viem": "^2.50.0"
43
+ },
44
+ "devDependencies": {
45
+ "@types/node": "^22.7.0",
46
+ "vitest": "^2.1.0"
47
+ },
48
+ "keywords": [
49
+ "custody",
50
+ "multi-sig",
51
+ "trustee",
52
+ "recovery",
53
+ "agentic"
54
+ ]
55
+ }
package/spec.md ADDED
@@ -0,0 +1,8 @@
1
+ # @agenticprimitives/account-custody Spec
2
+
3
+ Canonical specs:
4
+
5
+ - [`../../specs/213-custody-layer-carve-out.md`](../../specs/213-custody-layer-carve-out.md)
6
+ - [`../../specs/207-smart-account-threshold-policy.md`](../../specs/207-smart-account-threshold-policy.md)
7
+
8
+ This package is the custody-layer SDK surface for `CustodyPolicy`.