-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "dria-oracle-sdk",
"version": "0.0.9",
"description": "An on-chain AI oracle SDK for Dria",
"license": "MIT",
"author": "FirstBatch Team <dev@firstbatch.xyz>",
"homepage": "https://github.com/firstbatchxyz/dria-oracle-sdk#readme",
"contributors": [
"Erhan Tezcan <erhan@firstbatch.xyz>"
],
"files": [
"dist/",
"LICENSE",
"README.md"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"dependencies": {
"viem": "^2.21.37"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.8.4",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"pkgroll": "^2.5.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@irys/sdk": "^0.2.11"
},
"scripts": {
"dev": "tsx src/index.ts",
"start": "pnpm build && node dist/index.cjs",
"lint": "eslint '**/*.ts'",
"build": "pkgroll",
"test": "NODE_ENV=test jest"
},
"prettier": {
"printWidth": 120
},
"keywords": [
"oracle",
"blockchain",
"dria",
"firstbatch",
"arweave",
"llm",
"ai"
]
}