@venusprotocol/chains 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +56 -0
- package/build/index.d.mts +106 -0
- package/build/index.mjs +4084 -0
- package/package.json +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@venusprotocol/chains",
|
|
3
|
+
"version": "0.8.2",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public",
|
|
7
|
+
"registry": "https://registry.npmjs.org/"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/VenusProtocol/venus-protocol-interface/tree/main/packages/chains"
|
|
12
|
+
},
|
|
13
|
+
"files": ["build"],
|
|
14
|
+
"main": "./build/index.mjs",
|
|
15
|
+
"module": "./build/index.mjs",
|
|
16
|
+
"types": "./build/index.d.mts",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./build/index.d.mts",
|
|
20
|
+
"require": "./build/index.mjs",
|
|
21
|
+
"import": "./build/index.mjs"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"start": "yarn run build -- --watch ./src",
|
|
26
|
+
"postinstall": "yarn run generate && yarn run build",
|
|
27
|
+
"test": "vitest run",
|
|
28
|
+
"build": "tsdown -d ./build",
|
|
29
|
+
"deploy-images": "src/scripts/deployImages/index.ts",
|
|
30
|
+
"clean": "rm -rf .turbo && rm -rf node_modules",
|
|
31
|
+
"lint": "biome check .",
|
|
32
|
+
"tsc": "tsc --noEmit",
|
|
33
|
+
"generate-token-icon-manifest": "rimraf src/generated/tokenIconSrcs.json && tsx src/scripts/generateManifest/index.ts --dirPath=tokens --outputFileName=tokenIconSrcs.ts",
|
|
34
|
+
"generate-chain-icon-manifest": "rimraf src/generated/chainIconSrcs.json && tsx src/scripts/generateManifest/index.ts --dirPath=chains --outputFileName=chainIconSrcs.ts",
|
|
35
|
+
"generate": "genversion --es6 --semi src/constants/version.ts && npm-run-all --parallel generate-token-icon-manifest generate-chain-icon-manifest"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@rollup/plugin-url": "^8.0.2",
|
|
39
|
+
"@venusprotocol/isolated-pools": "^4.3.0",
|
|
40
|
+
"@venusprotocol/typescript-config": "*",
|
|
41
|
+
"@venusprotocol/venus-protocol": "^9.7.0",
|
|
42
|
+
"@vercel/blob": "^2.0.0",
|
|
43
|
+
"commander": "^14.0.1",
|
|
44
|
+
"genversion": "^3.2.0",
|
|
45
|
+
"npm-run-all": "^4.1.5",
|
|
46
|
+
"react": "^19.2.0",
|
|
47
|
+
"rimraf": "^6.0.1",
|
|
48
|
+
"tsdown": "^0.15.6",
|
|
49
|
+
"tsx": "^4.20.5",
|
|
50
|
+
"vitest": "^3.2.4"
|
|
51
|
+
}
|
|
52
|
+
}
|