-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "@helios-lang/blockfrost-client",
"version": "0.1.2",
"description": "Effect-native blockfrost client",
"license": "BSD-3-Clause",
"packageManager": "pnpm@10.20.0",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"default": "./dist/index.js",
"import": "./dist/index.js",
"types": "./types/index.d.ts"
}
},
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepack": "pnpm run build",
"test": "pnpm run lint && pnpm run test:types && pnpm run test:unit",
"test:types": "tsc -p tsconfig.json",
"test:unit": "bun test"
},
"dependencies": {
"@effect/platform": "0.94.5",
"@helios-lang/effect": "^0.4.45",
"effect": "3.21.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/bun": "1.3.4",
"eslint": "^9.39.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.50.0"
}
}