-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.79 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
{
"name": "@kilnfi/sdk",
"version": "3.1.15",
"autor": "Kiln <[email protected]> (https://kiln.fi)",
"license": "BUSL-1.1",
"description": "JavaScript sdk for Kiln API",
"type": "module",
"main": "./build/cjs/kiln.js",
"module": "./build/esm/kiln.js",
"types": "./build/types/kiln.d.ts",
"typings": "./build/types/kiln.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./build/types/kiln.d.ts",
"import": "./build/esm/kiln.js",
"default": "./build/cjs/kiln.js"
}
},
"files": ["package.json", "build", "src"],
"scripts": {
"lint": "biome check ./src",
"format": "biome check ./src --write --unsafe",
"build": "bun run build:esm && bun run build:cjs && bun run build:types",
"prepublishOnly": "bun scripts/prepublishOnly.ts",
"build:esm": "tsc --project ./tsconfig.build.json --module es2020 --outDir ./build/esm && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./build/esm/package.json",
"build:cjs": "tsc --project ./tsconfig.build.json --module commonjs --outDir ./build/cjs --removeComments --verbatimModuleSyntax false && printf '{\"type\":\"commonjs\"}' > ./build/cjs/package.json",
"build:types": "tsc --project ./tsconfig.build.json --module esnext --declarationDir ./build/types --emitDeclarationOnly --declaration --declarationMap"
},
"keywords": ["sdk", "js", "eth", "sol", "xtz", "validators", "staking"],
"author": "Kiln",
"bugs": {
"url": "https://github.com/kilnfi/sdk-js/issues"
},
"homepage": "https://github.com/kilnfi/sdk-js#readme",
"dependencies": {
"@types/bun": "^1.1.11",
"fireblocks-sdk": "^5.32.0",
"openapi-fetch": "^0.12.0",
"viem": "^2.21.29"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@types/node-fetch": "^2.6.11",
"typescript": "^5.6.2"
}
}