@pancakeswap/chains
Version:
The single source of truth for Pancakeswap chain-related information
43 lines • 983 B
JSON
{
"name": "@pancakeswap/chains",
"license": "MIT",
"version": "0.5.2",
"description": "The single source of truth for Pancakeswap chain-related information",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/pancakeswap/pancake-frontend.git",
"directory": "packages/chains"
},
"keywords": [
"pancakeswap",
"chain"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"tsup": "^6.7.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --run",
"test:u": "vitest -u --run",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"update:snapshot": "vitest -u"
}
}