Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.env*
/node_modules
/dist
/docs
Binary file added bun.lockb
Binary file not shown.
27 changes: 18 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"name": "@0xgasless/agentkit",
"description": "0xGasless Agentkit - Gasless transactions and account abstraction toolkit",
"repository": "https://github.com/0xgasless/agentkit",
"version": "0.0.3",
"author": {
"name": "Permissionless Puter",
"email": "puter@prmsnls.xyz",
"url": "https://bento.me/puter"
"repository": {
"type": "git",
"url": "git+https://github.com/0xgasless/agentkit.git"
},
"version": "0.0.3",
"author": "Permissionless Puter <puter@prmsnls.xyz> (https://bento.me/puter)",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
Expand All @@ -16,10 +15,10 @@
],
"scripts": {
"build": "tsc",
"test": "bun run src/test.ts",
"lint": "biome lint --write .",
"format": "biome format --write .",
"check": "tsc --noEmit",
"test": "bunx jest --no-cache --testMatch='**/*_test.ts'",
"test:dry-run": "bun install && bun ci && bun publish --dry-run",
"test:e2e": "bunx jest --no-cache --testMatch=**/e2e.ts --coverageThreshold '{}'",
"test:types": "tsd --files src/tests/types.test-d.ts",
Expand All @@ -28,10 +27,16 @@
"docs:serve": "bunx serve ./docs",
"dev": "bun link && concurrently \"tsc --watch\" \"tsc-alias -w\"",
"build:types": "tsc --project ./tsconfig.json && tsc-alias -p ./tsconfig.json",
"deploy": "bun run format && bun run lint && bun run clean && bun run build:types && bun run docs"
"deploy": "bun run format && bun run lint && bun run clean && bun run build:types && bun run docs && npm publish --access public"
},
"dependencies": {
"@0xgasless/smart-account": "latest",
"@langchain/core": "^0.3.39",
"@uniswap/sdk-core": "^7.5.0",
"@uniswap/v3-periphery": "^1.4.4",
"@uniswap/v3-sdk": "^3.24.0",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"merkletreejs": "^0.4.1",
"viem": "2",
"zod": "^3.23.8"
Expand All @@ -53,5 +58,9 @@
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
}
}
},
"bugs": {
"url": "https://github.com/0xgasless/agentkit/issues"
},
"homepage": "https://github.com/0xgasless/agentkit#readme"
}
Loading