UNPKG

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