@frak-labs/core-sdk
Version:
Core SDK of the Frak wallet, low level library to interact directly with the frak ecosystem.
101 lines (100 loc) • 2.4 kB
JSON
{
"name": "@frak-labs/core-sdk",
"author": "Frak Labs",
"maintainers": [
{
"name": "srod",
"url": "https://twitter.com/srod"
},
{
"name": "Quentin Nivelais",
"url": "https://twitter.com/QNivelais"
}
],
"version": "0.0.14",
"description": "Core SDK of the Frak wallet, low level library to interact directly with the frak ecosystem.",
"repository": {
"url": "https://github.com/frak-id/wallet",
"directory": "sdk/core"
},
"homepage": "https://docs.frak.id/wallet-sdk/overview",
"keywords": [
"frak-labs",
"frak-wallet",
"erc-4337",
"eip-4337",
"smart-wallet"
],
"license": "GNU GPL 3.0",
"sideEffects": false,
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"/dist",
"/cdn"
],
"browser": "./cdn/bundle.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./actions": {
"import": {
"types": "./dist/actions.d.ts",
"default": "./dist/actions.js"
},
"require": {
"types": "./dist/actions.d.cts",
"default": "./dist/actions.cjs"
}
},
"./interactions": {
"import": {
"types": "./dist/interactions.d.ts",
"default": "./dist/interactions.js"
},
"require": {
"types": "./dist/interactions.d.cts",
"default": "./dist/interactions.cjs"
}
}
},
"scripts": {
"lint": "biome lint .",
"format:check": "biome check .",
"format": "biome check --write .",
"clean": "rimraf dist",
"build": "rslib build",
"build:watch": "rslib build --watch",
"check-exports": "attw --pack --profile node16 .",
"typecheck": "tsc --noEmit",
"prepublish": "bun run lint && bun run build",
"publish": "echo 'Publishing core...'"
},
"peerDependencies": {
"viem": "^2.23.14"
},
"dependencies": {
"@jsonjoy.com/json-pack": "^1.2.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@microsoft/api-extractor": "^7.52.1",
"@rslib/core": "^0.5.5",
"@types/node": "^22.13.13",
"typescript": "^5.8.2"
},
"browserslist": [
"extends @frak-labs/browserslist-config"
]
}