-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.72 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
67
68
69
70
{
"name": "@hypotenuselabs/ts-chainlink-datafeed",
"license": "MIT",
"version": "0.0.11",
"description": "Typescript library for interacting with Chainlink datafeeds",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"sideEffects": false,
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hyplabs/ts-chainlink-datafeed.git"
},
"keywords": [
"chainlink",
"datafeed",
"viem",
"typescript",
"ethers"
],
"author": "Alex McGonagle",
"type": "module",
"scripts": {
"example": "tsx example/index.ts",
"arbitrum": "tsx example/arbitrum.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"updateAllFeeds": "tsx ./scraper/playwright.ts && prettier --write ./src/dataFeeds/*.ts",
"build": "rm -rf dist && tsup src/index.ts --minify --format cjs,esm --dts"
},
"devDependencies": {
"@types/node": "^20.10.8",
"@types/react": "^18.2.48",
"playwright": "^1.38.1",
"prettier": "^3.0.3",
"tsup": "^8.0.1",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"viem": ">=2.0.0",
"vitest": "^1.1.3"
},
"peerDependencies": {
"@ponder/utils": "^0.1.1",
"viem": ">=2.0.0"
},
"optionalDependencies": {
"react": "^18.2.0"
},
"bugs": {
"url": "https://github.com/hyplabs/ts-chainlink-datafeed/issues"
},
"homepage": "https://github.com/hyplabs/ts-chainlink-datafeed#readme",
"directories": {
"example": "example"
}
}