-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.85 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
{
"type": "module",
"module": "index.ts",
"name": "lenfi-smart-contracts",
"version": "0.1.0",
"description": "Validators for Lenfi.",
"license": "",
"repository": {
"type": "git",
"url": "git+github.com:/lenfiLabs/lenfi-smart-contracts.git"
},
"scripts": {
"build": "cd contracts && aiken build && bun blueprint.ts && prettier -w ./plutus.ts && mv plutus.ts .. && cd .. && bun run script_size_dump.ts",
"build:debug": "aiken build -f user-defined -t verbose && bun blueprint.ts && prettier -w ./plutus.ts",
"build:rust": "cargo build --release",
"bench": "bun run ./src/bench.ts",
"start": "bun ./src/main.ts",
"start:rust": "env RUST_LOG=error ./target/release/lenfi",
"dev": "bun ./src/main.ts",
"dev:rust": "cargo watch -x \"run\"",
"fmt": "pnpm exec prettier --write .",
"lint": "eslint . --ext .ts",
"test": "bun test"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@deno/shim-deno": "~0.16.1",
"@harmoniclabs/cbor": "^1.5.0",
"@hono/zod-validator": "^0.1.11",
"bignumber.js": "^9.1.2",
"bun-types": "^1.1.40",
"hono": "^3.12.12",
"lucid-cardano": "^0.10.11",
"noble-ed25519": "^1.2.6",
"prettier": "^3.4.2",
"translucent-cardano": "^0.0.6",
"typescript-formatter": "^7.2.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/secp256k1": "^4.0.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"@dcspark/cardano-multiplatform-lib-nodejs": "^3.1.2",
"@cardano-ogmios/schema": "^6.10.0"
},
"keywords": [],
"author": ""
}