@reinconsole/erc8004 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,61 @@
1
+ {
2
+ "name": "@reinconsole/erc8004",
3
+ "version": "0.1.0",
4
+ "description": "ERC-8004 Identity Registry integration — reads on-chain identity facts (ownerOf, agentWallet) and turns them into reputation-graph link facts; registers agents on the real registry.",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/bugiiiii11/rein#readme",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/bugiiiii11/rein.git",
10
+ "directory": "services/erc8004"
11
+ },
12
+ "bugs": "https://github.com/bugiiiii11/rein/issues",
13
+ "keywords": [
14
+ "rein",
15
+ "erc-8004",
16
+ "erc8004",
17
+ "agent-identity",
18
+ "identity-registry",
19
+ "reputation",
20
+ "base",
21
+ "viem",
22
+ "ai-agents"
23
+ ],
24
+ "engines": {
25
+ "node": ">=22"
26
+ },
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "type": "module",
31
+ "sideEffects": false,
32
+ "exports": {
33
+ ".": {
34
+ "types": "./dist/index.d.ts",
35
+ "import": "./dist/index.js"
36
+ }
37
+ },
38
+ "main": "./dist/index.js",
39
+ "types": "./dist/index.d.ts",
40
+ "files": [
41
+ "dist"
42
+ ],
43
+ "dependencies": {
44
+ "viem": "^2.47.0",
45
+ "@reinconsole/core": "^0.1.0"
46
+ },
47
+ "devDependencies": {
48
+ "@types/node": "^22.10.0",
49
+ "tsup": "^8.3.5",
50
+ "typescript": "^5.7.2",
51
+ "vitest": "^2.1.8",
52
+ "@reinconsole/graph": "0.1.0"
53
+ },
54
+ "scripts": {
55
+ "build": "tsup",
56
+ "typecheck": "tsc --noEmit",
57
+ "test": "vitest run",
58
+ "test:watch": "vitest",
59
+ "clean": "rimraf dist .turbo"
60
+ }
61
+ }