1{
2 "name": "atnotary",
3 "version": "0.1.3",
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.17.2",
31 "@ethereum-attestation-service/eas-sdk": "^2.9.0",
32 "chalk": "^5.6.2",
33 "commander": "^14.0.1",
34 "ethers": "^6.15.0",
35 "js-yaml": "^4.1.0",
36 "ora": "^9.0.0"
37 },
38 "devDependencies": {
39 "@types/js-yaml": "^4.0.9",
40 "@types/node": "^24.7.2",
41 "@vitest/coverage-v8": "^3.2.4",
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}