-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.18 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
{
"name": "@gitcoin/gitcoin-chain-data",
"version": "1.0.43",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"npm": ">=8.5.5",
"node": ">=16.15.0"
},
"author": "jaxcoder",
"license": "MIT",
"keywords": [
"gitcoin",
"chain",
"data"
],
"scripts": {
"build": "rm -rf dist && tsup && tsc && cp -rf src/data/* dist/data",
"new-chain": "node scripts/newChain.ts"
},
"dependencies": {
"viem": "^2.9.32"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^18.3.1",
"cpy-cli": "^5.0.0",
"tsup": "^8.0.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gitcoinco/gitcoin-chain-data.git"
},
"bugs": {
"url": "https://github.com/gitcoinco/gitcoin-chain-data/issues"
},
"tsup": {
"entry": [
"./src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"bundle": true,
"dts": true
},
"description": "A library for interacting with the Gitcoin chain data.",
"homepage": "https://github.com/gitcoinco/gitcoin-chain-data#readme"
}