-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.79 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.79 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
{
"name": "@helios-lang/tx-utils",
"version": "0.6.36",
"description": "Coinselection, Cardano query layer clients, emulator, wallets",
"main": "src/index.js",
"types": "types/index.d.ts",
"type": "module",
"scripts": {
"build": "pnpm run prettify && pnpm run build:types && pnpm run test:suite && pnpm run test:integ",
"build:docs": "typedoc --tsconfig ./jsconfig.json",
"build:types": "tsc -p jsconfig.json --noEmit false --emitDeclarationOnly",
"lockfile:sync": "pnpm install --ignore-workspace",
"prepack": "pnpm run build",
"prettify": "prettier . --write",
"test": "pnpm run test:pretty && pnpm run test:types && pnpm run test:suite && pnpm run test:integ",
"test:install_deps": "cd ./test/all-pure ; pnpm --ignore-workspace install",
"test:integ": "pnpm test:install_deps && pnpm --prefix test/all-pure run test",
"test:pretty": "prettier . --check",
"test:suite": "pnpm test:install_deps && node --test --experimental-test-coverage",
"test:debug": "node --inspect-brk --test --experimental-test-coverage",
"test:types": "pnpm run build:types"
},
"author": "Christian Schmitz",
"license": "BSD-3-Clause",
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false
},
"devDependencies": {
"@types/node": "^20.12.4",
"prettier": "^3.3.3",
"typedoc": "^0.26.11",
"typescript": "^5.6.2"
},
"dependencies": {
"@helios-lang/cbor": "^0.3.1",
"@helios-lang/codec-utils": "^0.3.4",
"@helios-lang/crypto": "^0.2.3",
"@helios-lang/ledger": "^0.7.23",
"@helios-lang/type-utils": "^0.3.0",
"@helios-lang/uplc": "^0.7.20"
}
}