-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.16 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
{
"name": "@pinax/chains",
"version": "2.1.9",
"description": "Single-source-of-truth for the metadata of chains supported by Pinax.",
"keywords": [
"chains",
"metadata",
"ssot"
],
"author": "Dominic <dominic@pinax.network>",
"main": "build/index.js",
"module": "build/index.mjs",
"types": "build/index.d.ts",
"files": [
"index.ts",
"/data/services.ts",
"/data/chains/V2/**/**.svg",
"/data/chains/V1/chains.json",
"/data/chains/V2/chains.json",
"/types",
"dist"
],
"scripts": {
"fetch-graph-ids": "bun ./scripts/fetchGraphIDs.ts",
"format": "prettier --log-level warn --write \"./**/*.{js,jsx,ts,tsx}\"",
"generate": "bun run generate:data && bun run generate:types && bun run generate:new_icons",
"generate:new_icons": "bun ./scripts/generate/V2/generate_token_icons.ts",
"generate:data": "bun run generate:data_index && bun run generate:index_config && bun run generate:data_json",
"generate:index_config": "bun ./scripts/generate/V2/index_config_check.ts",
"generate:data_index": "bun ./scripts/generate/V2/data_index.ts",
"generate:data_json": "bun ./scripts/generate/V2/data_json.ts",
"generate:types": "bun run generate:type_graphid && bun run generate:type_pinaxid && bun run format",
"generate:type_graphid": "bun ./scripts/generate/V2/type_graphid.ts",
"generate:type_pinaxid": "bun ./scripts/generate/V2/type_pinaxid.ts",
"generate:copy_token_icons": "bun ./scripts/generate/V2/copy_token_icons.ts",
"test": "bun test",
"build": "tsup",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"devDependencies": {
"@token-icons/core": "^2.14.0",
"@types/bun": "latest",
"@types/jest": "^29.5.12",
"@web3icons/core": "^3.12.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-morph": "^22.0.0",
"tsup": "^8.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinax-network/chains.git"
},
"homepage": "https://github.com/pinax-network/chains#readme",
"bugs": {
"url": "https://github.com/pinax-network/chains/issues"
},
"peerDependencies": {
"typescript": "^5.4.4"
}
}