-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
167 lines (167 loc) · 10.7 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "blockhead",
"version": "0.0.1",
"homepage": "https://blockhead.info",
"scripts": {
"dev": "dotenvx run -- vite dev",
"build": "dotenvx run -- vite build",
"build:static": "dotenvx run --env-file=.env.static -- vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"test": "npm run test:unit && npm run test:integration",
"test:integration": "playwright test",
"test:unit": "vitest",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"env:encrypt": "dotenvx encrypt -f .env.production",
"generate": "npx npm-run-all generate:*",
"generate:gql.tada": "gql.tada generate output",
"generate:gql.tada:turbo": "gql.tada turbo",
"generate:oazapfts:beryx:filecoin": "oazapfts https://docs.zondax.ch/openapi/beryx-fil-mainnet.json ./src/api/beryx/filecoin/api.ts --optimistic --useEnumType",
"generate:oazapfts:blockscout:rest": "oazapfts https://raw.githubusercontent.com/blockscout/blockscout-api-v2-swagger/main/swagger.yaml ./src/api/blockscout/rest/index.ts --optimistic --useEnumType",
"generate:oazapfts:coinapi": "oazapfts https://raw.githubusercontent.com/coinapi/coinapi-sdk/master/data-api/coinapi-marketdata-rest.yaml ./src/api/coinapi/market-data/rest/index.ts --optimistic --useEnumType",
"generate:oazapfts:coinpaprika": "oazapfts https://raw.githubusercontent.com/coinpaprika/coinpaprika.github.io/master/1.7/openapi/index.yml ./src/api/coinpaprika/api.ts --optimistic --useEnumType",
"generate:oazapfts:defillama:llamafolio": "oazapfts https://raw.githubusercontent.com/llamafolio/llamafolio-api/master/docs/swagger/swagger.json ./src/api/defillama/llamafolio/api.ts --optimistic --useEnumType",
"generate:oazapfts:openrank:farcaster": "oazapfts https://graph.cast.k3l.io/openapi.json ./src/api/openrank/farcaster/index.ts --optimistic --useEnumType",
"generate:oazapfts:neynar:v1": "oazapfts https://raw.githubusercontent.com/neynarxyz/OAS/main/src/v1/spec.yaml ./src/api/neynar/v1.ts --optimistic --useEnumType",
"generate:oazapfts:neynar:v2": "oazapfts https://raw.githubusercontent.com/neynarxyz/OAS/main/src/v2/spec.yaml ./src/api/neynar/v2.ts --optimistic --useEnumType",
"generate:oazapfts:zapper:v2": "oazapfts https://api.zapper.xyz/api-json ./src/api/zapper/v2.ts --optimistic --useEnumType",
"generate:openapi-typescript:1inch:aggregation": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/aggregation-openapi.json -o ./src/api/1inch/aggregation/api.d.ts",
"generate:openapi-typescript:1inch:balances": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/balances-openapi.json -o ./src/api/1inch/balances/api.d.ts",
"generate:openapi-typescript:1inch:fusion-orders": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/fusion_orders-openapi.json -o ./src/api/1inch/fusion-orders/api.d.ts",
"generate:openapi-typescript:1inch:fusion-quoter": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/fusion_quoter-openapi.json -o ./src/api/1inch/fusion-quoter/api.d.ts",
"generate:openapi-typescript:1inch:fusion-relayer": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/fusion_relayer-openapi.json -o ./src/api/1inch/fusion-relayer/api.d.ts",
"generate:openapi-typescript:1inch:gas-prices": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/gasprices-openapi.json -o ./src/api/1inch/gas-prices/api.d.ts",
"generate:openapi-typescript:1inch:history": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/history-openapi.json -o ./src/api/1inch/history/api.d.ts",
"generate:openapi-typescript:1inch:nft": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/nft-openapi.json -o ./src/api/1inch/nft/api.d.ts",
"generate:openapi-typescript:1inch:orderbook": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/orderbook-openapi.json -o ./src/api/1inch/orderbook/api.d.ts",
"generate:openapi-typescript:1inch:portfolio": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/portfolio-openapi.json -o ./src/api/1inch/portfolio/api.d.ts",
"generate:openapi-typescript:1inch:spot-prices": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/spotprices-openapi.json -o ./src/api/1inch/spot-prices/api.d.ts",
"generate:openapi-typescript:1inch:tokens": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/tokens-openapi.json -o ./src/api/1inch/tokens/api.d.ts",
"generate:openapi-typescript:1inch:traces": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/traces-openapi.json -o ./src/api/1inch/traces/api.d.ts",
"generate:openapi-typescript:1inch:tx-broadcast": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/txbroadcast-openapi.json -o ./src/api/1inch/tx-broadcast/api.d.ts",
"generate:openapi-typescript:1inch:web3": "openapi-typescript https://raw.githubusercontent.com/1inch/1inch-sdk-go/refs/heads/main/codegen/openapi/web3-openapi.json -o ./src/api/1inch/web3/api.d.ts",
"generate:openapi-typescript:curvegrid": "openapi-typescript https://api.redocly.com/registry/bundle/curvegrid/multibaas/v0/openapi.yaml -o ./src/api/curvegrid/multibaas/api.d.ts",
"generate:swagger-typescript-api:zapper-old": "swagger-typescript-api --path https://api.zapper.fi/api/json --output ./src/api/zapper/api/ --clean-output true --responses true --union-enums true --add-readonly true --route-types false --enum-names-as-values true --extract-request-params true --extract-request-body true --modular true --unwrap-response-data true --single-http-client true --default-response unknown",
"generate:swagger-typescript-api:moralis": "swagger-typescript-api --path https://deep-index.moralis.io/api-docs/v2/swagger.json --output ./src/api/moralis/api/ --clean-output true --union-enums false --route-types true --enum-names-as-values true --extract-request-params true --extract-request-body true --single-http-client true --default-response {} --unwrap-response-data true",
"generate:swagger-typescript-api:nftport": "swagger-typescript-api --path https://api.nftport.xyz/openapi.json --output ./src/api/nftport/api/ --clean-output true --union-enums false --route-types true --enum-names-as-values true --extract-request-params true --extract-request-body true --single-http-client true --default-response {} --unwrap-response-data true"
},
"type": "module",
"packageManager": "[email protected]",
"dependencies": {
"@coinbase/wallet-sdk": "^3.7.2",
"@decommas/sdk": "^1.8.0",
"@didtools/pkh-ethereum": "^0.4.1",
"@dotenvx/dotenvx": "^1.5.0",
"@fontsource/fira-code": "^5.0.16",
"@fontsource/ubuntu": "^5.0.8",
"@helia/ipns": "^7.2.2",
"@helia/unixfs": "^3.0.6",
"@liquality/wallet-sdk": "^2.5.2",
"@oazapfts/runtime": "^1.0.3",
"@pushprotocol/restapi": "^1.6.3",
"@pushprotocol/socket": "^0.5.3",
"@resvg/resvg-js": "^2.6.0",
"@tanstack/query-broadcast-client-experimental": "^5.36.1",
"@tanstack/query-persist-client-core": "^5.37.1",
"@tanstack/svelte-query": "^5.37.1",
"@tenderly/sdk": "^0.2.1",
"@uniswap/sdk-core": "^4.0.10",
"@uniswap/token-lists": "1.0.0-beta.33",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-sdk": "^3.10.2",
"@urql/svelte": "^4.0.4",
"@wagmi/core": "^2.10.2",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/sign-client": "^2.11.2",
"@walletconnect/types": "^2.11.2",
"@walletconnect/web3-provider": "^1.8.0",
"@web3modal/wagmi": "4.0.13",
"@wooorm/starry-night": "^3.2.0",
"abitype": "^1.0.2",
"anchorme": "^3.0.8",
"array-from-async": "^3.0.0",
"bip44-constants": "^252.0.0",
"blockstore-core": "^4.4.1",
"blockstore-idb": "^1.1.8",
"buffer": "^6.0.3",
"caip": "^1.1.0",
"datastore-core": "^9.2.7",
"datastore-idb": "^2.1.7",
"detect-content-type": "^1.2.0",
"devalue": "^5.1.1",
"did-resolver": "^4.1.0",
"did-session": "^2.1.2",
"dids": "^4.0.4",
"echarts": "^5.5.1",
"ethers": "^6.10.0",
"etherspot": "^1.44.0",
"file-type": "^18.7.0",
"gql.tada": "^1.8.2",
"helia": "^4.2.2",
"idb-keyval": "^6.2.1",
"key-did-resolver": "^3.0.0",
"ky": "^1.2.0",
"map.groupby": "^1.0.1",
"multiformats": "^12.1.3",
"oazapfts": "^6.1.0",
"object.groupby": "^1.0.2",
"openapi-typescript-fetch": "^2.0.0",
"process": "^0.11.10",
"regexp.escape": "^1.1.0",
"runes2": "^1.1.3",
"satori": "^0.10.13",
"satori-html": "^0.3.2",
"set.prototype.difference": "^1.1.5",
"sharp": "^0.33.2",
"svelte-meta-tags": "^3.1.0",
"svelvet": "^6.0.12",
"uint8arrays": "^4.0.10",
"viem": "^2.11.1",
"vis-timeline": "^7.7.3",
"webmax": "^0.2.0"
},
"devDependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@playwright/test": "^1.41.1",
"@sveltejs/adapter-auto": "^3.2.5",
"@sveltejs/adapter-netlify": "^4.3.5",
"@sveltejs/adapter-static": "^3.0.5",
"@sveltejs/adapter-vercel": "^5.4.5",
"@sveltejs/kit": "^2.7.1",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@total-typescript/ts-reset": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte3": "^4.0.0",
"openapi-typescript": "^7.4.3",
"pnpm": "^9.12.3",
"postcss": "^8.4.38",
"postcss-load-config": "^5.1.0",
"postcss-nesting": "^12.1.4",
"prettier": "^3.2.4",
"prettier-plugin-svelte": "^3.2.7",
"svelte": "^4.2.19",
"svelte-check": "^4.0.5",
"svelte-preprocess": "^6.0.3",
"swagger-typescript-api": "^13.0.3",
"tslib": "^2.6.2",
"typescript": "^5.5.3",
"vite": "^5.4.9",
"vitest": "^1.2.2"
},
"pnpm": {
"patchedDependencies": {
"@didtools/[email protected]": "patches/@[email protected]",
"oazapfts": "patches/oazapfts.patch"
}
},
"engines": {
"node": ">=20.0.0"
}
}