-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.98 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@llamafolio/tokens",
"version": "0.1.108",
"description": "List of tokens used by LlamaFolio.",
"type": "module",
"source": "index.ts",
"main": "./build/index.js",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.js",
"types": "./build/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"build",
"package.json"
],
"scripts": {
"prebuild": "rm -rf build",
"build": "tsup",
"test": "node test/index.test.js",
"stable": "node_modules/.bin/bun scripts/stable.ts",
"add-token": "node_modules/.bin/bun scripts/add-token.ts",
"resize-logos": "tsx scripts/resize-logos.ts",
"resolve-tokens": "tsx scripts/resolve-tokens.ts",
"cleanup": "node_modules/.bin/bun scripts/cleanup.ts",
"cleanup-priceable": "node_modules/.bin/bun scripts/filter-by-price.ts",
"release": "bumpp package.json --commit --push --tag",
"typecheck": "tsc --noEmit",
"prepublishOnly": "NODE_ENV='production' pnpm build",
"clean": "rm -rf build"
},
"devDependencies": {
"@types/node": "^20.3.2",
"bumpp": "^9.1.1",
"bun": "^0.6.11",
"bun-types": "^0.6.11",
"sharp": "^0.32.1",
"tsup": "^7.1.0",
"tsx": "^3.12.7",
"typescript": "^5.1.5"
},
"repository": "github:llamafolio/llamafolio-tokens",
"bugs": "github:llamafolio/llamafolio-tokens/issues",
"homepage": "github:llamafolio/llamafolio-tokens#readme",
"author": "LlamaFolio",
"keywords": [
"tokens",
"registry",
"ERC20"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=8.0.0",
"yarn": "------>PLEASE USE PNPM<------",
"npm": "------>PLEASE USE PNPM<------"
},
"sideEffects": false,
"license": "GPL-3.0-or-later",
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"arrowParens": "avoid",
"trailingComma": "none"
}
}