@frak-labs/core-sdk
Version:
Core SDK of the Frak wallet, low level library to interact directly with the frak ecosystem.
112 lines (111 loc) • 2.73 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": "1.1.3",
"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",
"/src"
],
"browser": "./cdn/bundle.js",
"exports": {
".": {
"development": "./src/index.ts",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./actions": {
"development": "./src/actions/index.ts",
"import": {
"types": "./dist/actions.d.ts",
"default": "./dist/actions.js"
},
"require": {
"types": "./dist/actions.d.cts",
"default": "./dist/actions.cjs"
}
},
"./bundle": {
"import": {
"types": "./dist/bundle.d.ts",
"default": "./dist/bundle.js"
},
"require": {
"types": "./dist/bundle.d.cts",
"default": "./dist/bundle.cjs"
}
}
},
"scripts": {
"lint": "biome lint .",
"format:check": "biome check .",
"format": "biome check --write .",
"clean": "rimraf dist cdn",
"build": "tsdown",
"build:watch": "tsdown --watch",
"check-exports": "attw --pack --profile node16 .",
"typecheck": "tsgo --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"prepublish": "bun run lint && bun run build",
"publish": "echo 'Publishing core...'"
},
"peerDependencies": {
"viem": "^2.x"
},
"dependencies": {
"@frak-labs/frame-connector": "0.2.0",
"@openpanel/web": "^1.4.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@frak-labs/test-foundation": "0.1.0",
"@rolldown/plugin-node-polyfills": "^1.0.3",
"@types/jsdom": "^28.0.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"jsdom": "^29.0.0",
"tsdown": "^0.22.0",
"typescript": "^6.0.2",
"viem": "^2.47.16",
"vitest": "^4.1.4"
}
}