UNPKG

1.08 kBJSONView Raw
1{
2 "name": "@uniswap/token-lists",
3 "author": "Moody Salem",
4 "description": "📚 The Token Lists specification",
5 "version": "1.0.0-beta.26",
6 "license": "MIT",
7 "main": "dist/index.js",
8 "typings": "dist/index.d.ts",
9 "files": [
10 "dist",
11 "src"
12 ],
13 "engines": {
14 "node": ">=10"
15 },
16 "repository": {
17 "url": "https://github.com/Uniswap/token-lists",
18 "type": "git"
19 },
20 "scripts": {
21 "start": "tsdx watch",
22 "build": "tsdx build",
23 "postbuild": "cp src/tokenlist.schema.json dist/tokenlist.schema.json",
24 "test": "tsdx test",
25 "lint": "tsdx lint src test",
26 "prepublishOnly": "yarn test && yarn build"
27 },
28 "peerDependencies": {},
29 "husky": {
30 "hooks": {
31 "pre-commit": "tsdx lint"
32 }
33 },
34 "prettier": {
35 "printWidth": 80,
36 "semi": true,
37 "singleQuote": true,
38 "trailingComma": "es5"
39 },
40 "module": "dist/token-lists.esm.js",
41 "devDependencies": {
42 "ajv": "^8.6.1",
43 "ajv-formats": "^2.1.0",
44 "husky": "^4.2.5",
45 "tsdx": "^0.14.1",
46 "tslib": "^2.0.0",
47 "typescript": "^4.3.5"
48 }
49}