-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 KB
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
{
"name": "dynamic-lp-fees",
"version": "1.0.0",
"description": "Dynamic LP Fee Calculator for Stablepool LP fees",
"main": "index.js",
"scripts": {
"build": "tsup src/index.ts --minify --format esm,cjs --dts --clean --tsconfig tsconfig.build.json",
"start": "pnpm build && node dist/index",
"type-check": "tsc --noEmit",
"lint": "pnpm eslint .",
"format": "pnpm prettier --write src/ tests/",
"format:check": "pnpm prettier --check src/ tests/",
"test": "vitest run"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.18.1",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/json-bigint": "^1.0.4",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"json-bigint": "^1.0.0",
"prettier": "^3.6.2",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vitest": "^4.0.13"
},
"dependencies": {
"@anastasia-labs/cardano-multiplatform-lib-nodejs": "6.0.2-3",
"@lucid-evolution/lucid": "^0.4.29",
"dotenv": "^17.2.3",
"winston": "^3.18.3"
}
}