-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.43 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
{
"name": "@pinax/chains",
"version": "2.2.3",
"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",
"generate": "bun run generate:data && bun run generate:types && bun run generate:new_icons && bun format",
"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",
"update": "bun run generate && bun run test && bun run build",
"release": "bun run changeset && bun run changeset:version",
"test": "bun test",
"build": "tsup",
"typecheck": "tsc",
"format": "biome check --write --unsafe",
"lint": "biome check .",
"prepublishOnly": "npm run build",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:status": "changeset status --verbose",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@changesets/cli": "^2.29.7",
"@pinax/graph-networks-registry": "^0.7.1",
"@token-icons/core": "^2.13.0",
"@types/bun": "1.3.2",
"@web3icons/core": "^4.0.0",
"husky": "^9.0.11",
"tsup": "^8.2.4",
"typescript": "^5.9.3"
},
"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"
}
}