-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.41 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.41 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@witnet/price-feeds",
"version": "3.2.1",
"description": "Open-source collection of verified price data using Witnet on supported blockchains.",
"author": "Witnet Foundation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/witnet/witnet-feeds"
},
"private": false,
"type": "module",
"keywords": [
"price feeds",
"witnet",
"wit/oracle",
"solidity",
"oracle",
"web3",
"arbitrum",
"avalanche",
"base",
"celo",
"conflux",
"cronos",
"doge",
"ethereum",
"gnosis",
"kaia",
"kava",
"kcc",
"moonbeam",
"optimism",
"polygon",
"scroll",
"unichain",
"ten",
"worldchain"
],
"bin": {
"notarizer": "./src/bin/bots/notarizer.cjs",
"reporter": "./src/bin/bots/reporter.cjs"
},
"exports": {
".": {
"types": "./dist/src/lib/*.d.ts",
"require": "./dist/src/lib/index.js",
"default": "./dist/src/lib/index.js"
},
"./assets": {
"types": "./dist/witnet/assets/*.d.cts",
"require": "./dist/witnet/assets/index.js",
"default": "./dist/witnet/assets/index.js"
},
"./utils": {
"types": "./dist/src/lib/*.d.ts",
"require": "./dist/src/lib/utils.js",
"default": "./dist/src/lib/utils.js"
},
"./settings": "./witnet/settings.json"
},
"files": [
"dist",
"src/bin",
".env_witnet"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"fmt": "npx biome check --unsafe",
"fmt!": "npx biome check --write --unsafe",
"pfs:check": "node ./scripts/rulebook.cjs",
"pfs:notarizer": "node src/bin/bots/notarizer.cjs",
"pfs:reporter": "node src/bin/bots/reporter.cjs",
"pfs:settle": "npm run build && node src/bin/cli/settle.cjs",
"pfs:status": "npm run build && node src/bin/cli/status.cjs",
"prepare": "npm run build",
"test": "vitest"
},
"dependencies": {
"@witnet/sdk": "^3.2.4",
"@witnet/solidity": "^3.2.1",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"lodash.merge": "^4.6.2",
"moment": "^2.30.1",
"node-cron": "^4.2.1",
"object-hash": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^24.12.0",
"chai": "^6.2.2",
"cross-env": "^10.1.0",
"ethrpc-gateway": "^2.3.1",
"inquirer": "^8.2.7",
"moment": "^2.30.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"@witnet/sdk",
"@witnet/solidity",
"es5-ext",
"esbuild",
"keccak",
"protobufjs",
"secp256k1"
]
}
}