-
Notifications
You must be signed in to change notification settings - Fork 262
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.79 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.79 KB
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
{
"name": "@chainlink/token-allocation-adapter",
"version": "1.14.9",
"description": "Chainlink token allocation adapter",
"keywords": [
"Chainlink",
"LINK",
"blockchain",
"oracle"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"url": "https://github.com/smartcontractkit/external-adapters-js",
"type": "git"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo",
"prepack": "yarn build",
"build": "tsc -b",
"server": "node -e 'require(\"./index.js\").server()'",
"server:dist": "node -e 'require(\"./dist/index.js\").server()'",
"start": "yarn server:dist"
},
"dependencies": {
"@chainlink/amberdata-adapter": "workspace:*",
"@chainlink/blocksize-capital-adapter": "workspace:*",
"@chainlink/cfbenchmarks-adapter": "workspace:*",
"@chainlink/coinapi-adapter": "workspace:*",
"@chainlink/coingecko-adapter": "workspace:*",
"@chainlink/coinmarketcap-adapter": "workspace:*",
"@chainlink/coinmetrics-adapter": "workspace:*",
"@chainlink/coinpaprika-adapter": "workspace:*",
"@chainlink/coinranking-adapter": "workspace:*",
"@chainlink/cryptocompare-adapter": "workspace:*",
"@chainlink/ea-bootstrap": "workspace:*",
"@chainlink/ea-test-helpers": "workspace:*",
"@chainlink/finage-adapter": "workspace:*",
"@chainlink/kaiko-adapter": "workspace:*",
"@chainlink/ncfx-adapter": "workspace:*",
"@chainlink/tiingo-adapter": "workspace:*",
"decimal.js": "^10.3.1",
"ethers": "^5.4.6",
"tslib": "^2.3.1"
},
"devDependencies": {
"@chainlink/external-adapter-framework": "2.11.6",
"@types/jest": "^29.5.14",
"@types/node": "22.14.1",
"nock": "13.5.6",
"typescript": "5.8.3"
}
}