-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 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
39
40
41
42
43
44
45
46
{
"name": "@minswap/felis-tx-builder",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/minswap/felis",
"directory": "packages/tx-builder"
},
"bugs": {
"url": "https://github.com/minswap/felis/issues"
},
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsc --watch --preserveWatchOutput",
"build": "tsc",
"test": "vitest",
"test:watch": "vitest --watch",
"check-circular-imports": "dpdm --no-warning --no-tree src"
},
"devDependencies": {
"@repo/typescript-config": "workspace:*",
"@types/json-bigint": "^1.0.4",
"@types/node": "^22.15.3",
"dpdm": "^3.15.1",
"typescript": "5.8.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@minswap/felis-cip": "workspace:*",
"@minswap/felis-ledger-core": "workspace:*",
"@minswap/felis-ledger-utils": "workspace:*",
"@minswap/tiny-invariant": "^1.2.0",
"bignumber.js": "^9.1.2",
"json-bigint": "^1.0.0",
"remeda": "^2.19.2"
}
}