forked from minswap/minswap-tokens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.05 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
74
75
76
{
"name": "@minswap/minswap-tokens",
"version": "1.0.5",
"description": "The merge of deprecated verified-tokens and market-cap repositories, which contains a list of tokens, exposes APIs for transparent access to circulating supply and total supply.",
"main": "build/index.js",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"type": "module",
"scripts": {
"lint": "biome check --no-errors-on-unmatched --fix .",
"lint:ci": "biome ci --changed --no-errors-on-unmatched .",
"build": "rimraf build && rollup -c rollup.config.js",
"test": "jest",
"check-format": "tsx ./internal/validateTokenFiles.ts",
"check-tvl": "tsx --env-file=.env ./internal/checkTVL.ts",
"prepare": "husky install"
},
"lint-staged": {
"*": [
"pnpm lint",
"pnpm check-format"
]
},
"files": [
"build"
],
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.es.js",
"require": "./build/index.js"
}
},
"keywords": [
"minswap",
"cardano",
"dex",
"blockchain"
],
"author": "Minswap Labs",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/minswap/minswap-tokens"
},
"bugs": {
"url": "https://github.com/minswap/minswap-tokens/issues"
},
"homepage": "https://github.com/minswap/minswap-tokens#readme",
"packageManager": "[email protected]",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@jest/globals": "^29.7.0",
"@minswap/sdk": "^0.3.4",
"@total-typescript/ts-reset": "^0.6.1",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.9.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"rollup": "^2.79.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-esbuild": "^4.10.3",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@blockfrost/blockfrost-js": "^5.7.0",
"ajv": "^8.17.1",
"js-yaml": "^4.1.0"
}
}