1{
2 "name": "atnotary",
3 "version": "0.1.0",
4 "type": "module",
5 "description": "Notarize AT Protocol records on Ethereum using EAS",
6 "main": "./dist/lib/index.js",
7 "types": "./dist/lib/index.d.ts",
8 "bin": {
9 "atnotary": "./dist/cli.js"
10 },
11 "exports": {
12 ".": {
13 "import": "./dist/lib/index.js",
14 "types": "./dist/lib/index.d.ts"
15 }
16 },
17 "files": [
18 "dist"
19 ],
20 "scripts": {
21 "build": "tsc",
22 "dev": "tsx src/cli.ts",
23 "prepublishOnly": "npm run build",
24 "test": "vitest",
25 "test:ui": "vitest --ui",
26 "test:coverage": "vitest --coverage",
27 "test:run": "vitest run"
28 },
29 "dependencies": {
30 "@atproto/api": "^0.12.29",
31 "@ethereum-attestation-service/eas-sdk": "^2.9.0",
32 "@ipld/dag-cbor": "^9.2.5",
33 "ethers": "^6.15.0"
34 },
35 "devDependencies": {
36 "@types/node": "^20.19.21",
37 "@vitest/coverage-v8": "^3.2.4",
38 "chalk": "^5.6.2",
39 "commander": "^11.1.0",
40 "dotenv": "^16.6.1",
41 "ora": "^8.2.0",
42 "tsx": "^4.20.6",
43 "typescript": "^5.9.3",
44 "vitest": "^3.2.4"
45 },
46 "keywords": [
47 "atproto",
48 "bluesky",
49 "ethereum",
50 "eas",
51 "notary",
52 "attestation"
53 ],
54 "license": "MIT"
55}