-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 2 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
58
59
60
{
"name": "@helios-lang/contract-utils",
"version": "0.3.14",
"description": "Convenience and type-safety utilities for using Helios validators from within Typescript",
"main": "src/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"import": "./src/index.js",
"require": "./src/index.js",
"types": "./types/index.d.ts"
},
"./set-fs-build-cache": "./src/context/set-fs-build-cache.js"
},
"sideEffects": [
"./src/context/set-fs-build-cache.js"
],
"type": "module",
"bin": {
"hl2ts": "src/hl2ts.js"
},
"scripts": {
"build": "pnpm run prettify && pnpm run build:types && pnpm run test:suite",
"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",
"test:pretty": "prettier . --check",
"test:suite": "node --test",
"test:types": "pnpm run build:types",
"testing": "HL_TEST_TRACE=ok node --test --watch",
"testing:debug": "HL_TEST_TRACE=ok node --inspect-brk --test --watch"
},
"author": "Christian Schmitz",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/node": "^20.11.24",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false
},
"peerDependencies": {
"@helios-lang/compiler": "*"
},
"dependencies": {
"@helios-lang/cli-utils": "^0.1.10",
"@helios-lang/codec-utils": "^0.3.4",
"@helios-lang/compiler-utils": "^0.5.3",
"@helios-lang/crypto": "0.2.3",
"@helios-lang/ledger": "^0.6.14",
"@helios-lang/type-utils": "^0.2.9",
"@helios-lang/uplc": "^0.7.9"
}
}