-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@saberhq/spl-token-icons",
"version": "0.1.1259",
"description": "Token icons cached on GitHub",
"keywords": [
"solana",
"saber",
"token",
"crypto"
],
"homepage": "https://github.com/saber-hq/spl-token-icons",
"bugs": {
"url": "https://github.com/saber-hq/spl-token-icons/issues",
"email": "[email protected]"
},
"license": "Apache-2.0",
"author": "Ian Macalinao <[email protected]>",
"funding": {
"type": "token",
"url": "https://ftx.com/trade/SOL/USD"
},
"repository": "github:saber-hq/spl-token-icons",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build": "rm -fr dist/ && tsc -P tsconfig.build.json && tsc -P tsconfig.esm.json",
"icons:fetch": "ts-node scripts/fetchIcons.ts"
},
"dependencies": {
"@solana/spl-token-registry": "^0.2.4574",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/follow-redirects": "^1.13.1",
"@types/node": "^16.11.9",
"axios": "^0.25.0",
"follow-redirects": "^1.14.5",
"p-limit": "3",
"prettier": "^2.4.1",
"tiny-invariant": "^1.2.0",
"ts-node": "^10.4.0",
"typedoc": "^0.22.9",
"typescript": "^4.4.4"
},
"files": [
"dist/",
"src/"
],
"publishConfig": {
"access": "public"
}
}