-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.8 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.8 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@api3/data-feed-proxy-combinators",
"description": "Contracts to read, combine or adapt data feeds",
"keywords": [
"api3",
"data feed",
"oracle",
"oev"
],
"license": "MIT",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/api3dao/data-feed-proxy-combinators.git"
},
"private": false,
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"contracts",
"deploy",
"typechain-types",
"dist"
],
"exports": {
".": "./dist/src/index.js"
},
"scripts": {
"build:hardhat": "hardhat --config hardhat.build.config.ts compile",
"build": "pnpm build:hardhat && tsc -p tsconfig.build.json",
"coverage": "hardhat coverage",
"deploy:InverseApi3ReaderProxyV1": "hardhat deploy --network $NETWORK --tags InverseApi3ReaderProxyV1",
"deploy:NormalizedApi3ReaderProxyV1": "hardhat deploy --network $NETWORK --tags NormalizedApi3ReaderProxyV1",
"deploy:PriceCappedApi3ReaderProxyV1": "hardhat deploy --network $NETWORK --tags PriceCappedApi3ReaderProxyV1",
"deploy:ProductApi3ReaderProxyV1": "hardhat deploy --network $NETWORK --tags ProductApi3ReaderProxyV1",
"deploy:ScaledApi3FeedProxyV1": "hardhat deploy --network $NETWORK --tags ScaledApi3FeedProxyV1",
"lint:eslint": "eslint . --ext .js,.ts",
"lint:solhint": "solhint ./contracts/**/*.sol",
"lint": "pnpm run prettier:check && pnpm run lint:eslint && pnpm run lint:solhint",
"prettier:check": "prettier --check \"./**/*.{js,ts,md,json,sol}\"",
"prettier": "prettier --write \"./**/*.{js,ts,md,json,sol}\"",
"release:tag": "ts-node scripts/tag-and-release.ts",
"test": "hardhat test --parallel",
"verify-vendor-contracts": "hardhat run scripts/verify-vendor-contracts.ts"
},
"devDependencies": {
"@api3/commons": "^1.1.2",
"@api3/contracts": "^32.2.0",
"@api3/eslint-plugin-commons": "^3.0.0",
"@api3/promise-utils": "^0.4.0",
"@eslint/js": "^9.39.2",
"@nomicfoundation/hardhat-ethers": "^3.1.3",
"@nomicfoundation/hardhat-network-helpers": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.1.3",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chai": "^4.5.0",
"dotenv": "^17.2.3",
"eslint": "8.57.1",
"ethers": "^6.16.0",
"glob": "^13.0.0",
"hardhat": "^2.28.2",
"hardhat-deploy": "^1.0.4",
"prettier": "^3.7.4",
"prettier-plugin-solidity": "^2.2.1",
"solhint": "^6.0.2",
"solidity-coverage": "^0.8.17",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0"
},
"packageManager": "pnpm@9.15.2"
}