-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.89 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.89 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
{
"name": "chaindata",
"private": true,
"type": "module",
"description": "A community controlled index of relay/parachain assets to suppliment on-chain data, allowing developers to easily leverage the latest parachain information when building within the polkadot ecosystem.",
"repository": "https://github.com/TalismanSociety/chaindata.git",
"author": "Talisman Devs <devs@talisman.community>",
"keywords": [],
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/TalismanSociety/chaindata/issues"
},
"homepage": "https://talisman.community",
"packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac",
"scripts": {
"prepare": "husky",
"validate-yaml": "prettier --write data/*.yaml",
"validate-schema": "pnpm tsx scripts/validate-schema.ts",
"validate": "pnpm run validate-yaml && pnpm run validate-schema",
"find-missing-coingeckoIds": "tsx scripts/find-missing-coingeckoIds.ts",
"find-pah-foreign-assets": "tsx scripts/find-pah-foreign-assets.ts",
"update-pjs": "pnpm update -L '@polkadot/*'",
"import-pjs-config": "tsx scripts/import-pjs-config.ts",
"update-rpcs": "pnpm run update-pjs && pnpm run import-pjs-config",
"report-erc20-aggregator": "pnpm tsx scripts/report-erc20-aggregator.ts",
"report-metadata-versions": "pnpm tsx scripts/report-metadata-versions.ts",
"cleanup-dead-rpcs": "pnpm tsx scripts/cleanup-dead-rpcs.ts",
"convert-v3-to-v4": "pnpm tsx scripts/convert-v3-to-v4.ts",
"typecheck": "tsc --noEmit",
"generate-schemas": "tsx scripts/generate-schemas.ts",
"fetch-external": "tsx scripts/fetch-external.ts",
"build": "pnpm run validate && tsx scripts/build.ts",
"build:dev": "tsx scripts/build.ts",
"clean": "rm -rf pub",
"postinstall": "pnpm generate-schemas"
},
"dependencies": {
"@polkadot-api/descriptors": "workspace:*",
"@polkadot-api/substrate-bindings": "^0.14.0",
"@polkadot/api": "^16.1.2",
"@polkadot/rpc-provider": "^16.1.2",
"@polkadot/types": "^16.1.2",
"@polkadot/util": "^13.5.1",
"@polkadot/util-crypto": "^13.5.1",
"@solana/web3.js": "^1.98.2",
"@supercharge/promise-pool": "^3.1.0",
"@talismn/balances": "0.0.0-pr2291-20260106100658",
"@talismn/chain-connectors": "0.0.0-pr2291-20260106100658",
"@talismn/chaindata-provider": "0.0.0-pr2291-20260106100658",
"@talismn/crypto": "0.2.3",
"@talismn/sapi": "0.0.12",
"@talismn/scale": "0.2.0",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"extract-colors": "^4.2.0",
"lodash": "^4.17.21",
"p-queue": "^8.1.0",
"polkadot-api": "^1.13.1",
"rxjs": "^7.8.1",
"scale-ts": "^1.6.1",
"sharp": "^0.34.2",
"tinycolor2": "^1.6.0",
"toml": "^3.0.0",
"url-join": "^5.0.0",
"viem": "^2.33.3",
"ws": "^8.18.2",
"yaml": "^2.8.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.0",
"@polkadot/apps-config": "^0.158.1",
"@polkadot/networks": "^13.5.1",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.0",
"@types/tinycolor2": "^1.4.6",
"@types/ws": "^8.18.1",
"anylogger": "^1.0.11",
"anylogger-loglevel": "^1.0.0",
"bun-types": "^1.2.15",
"husky": "^9.1.7",
"lint-staged": "^15.2.7",
"loglevel": "^1.9.2",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"plugins": [
"@ianvs/prettier-plugin-sort-imports"
],
"importOrder": [
"<TYPES>^(node:)",
"<BUILT_IN_MODULES>",
"",
"<TYPES>",
"<THIRD_PARTY_MODULES>",
"",
"<TYPES>^[.]",
"^[.]"
],
"importOrderTypeScriptVersion": "5.3.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,html,yaml}": "prettier --write"
}
}