-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 990 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 990 Bytes
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
{
"name": "@helios-lang/utxorpc",
"version": "0.1.2",
"description": "Wrapper for TxPipe's NodeJS UTxORPC SDK, with @helios-lang/ledger types",
"type": "module",
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "pnpm run prettify && pnpm run build:types",
"build:types": "tsc -p jsconfig.json --noEmit false --emitDeclarationOnly",
"prettify": "prettier . --write"
},
"keywords": [],
"author": "Christian Schmitz",
"license": "BSD-3-Clause",
"dependencies": {
"@helios-lang/ledger": "^0.6.14",
"@helios-lang/tx-utils": "^0.4.0",
"@helios-lang/type-utils": "^0.2.8",
"@utxorpc/sdk": "^0.6.4"
},
"devDependencies": {
"@types/node": "^22.10.2",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false
}
}