@yodlpay/tokenlists 1.0.2 → 1.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yodlpay/tokenlists",
3
- "version": "1.0.2",
3
+ "version": "1.1.1",
4
4
  "description": "Tokenlist typings, schema and lists.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,12 +20,14 @@
20
20
  "scripts": {
21
21
  "start": "tsdx watch",
22
22
  "build": "tsdx build",
23
- "postbuild": "mkdir -p dist/tokens && cp src/tokens/tokenlist-*.json dist/tokens/",
23
+ "postbuild": "mkdir -p dist/tokens && cp src/tokens/tokenlist-*.json src/tokens/stablecoin-registry.json dist/tokens/",
24
24
  "lint": "tsdx lint src",
25
25
  "format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
26
26
  "test": "jest",
27
27
  "typecheck": "tsc --noEmit -p ./tsconfig.json",
28
28
  "update": "tsx scripts/update.ts",
29
+ "update:stablecoins": "tsx src/update/fetch-stablecoins.ts",
30
+ "update:all": "npm run update:stablecoins && npm run update",
29
31
  "download-logos": "tsx scripts/download-logos.ts",
30
32
  "upload-logos": "tsx scripts/upload-logos.ts",
31
33
  "prepublishOnly": "npm run test && npm run build"