forked from 0xgasless/agentkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.84 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.84 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"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"
},
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"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",
"clean": "rm -rf dist && rm -rf docs",
"docs": "bunx --yes typedoc --entryPoints ./src --entryPointStrategy expand --exclude ./src/tests/**/*.ts",
"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"
},
"dependencies": {
"@0xgasless/smart-account": "latest",
"merkletreejs": "^0.4.1",
"viem": "2",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jest": "^29.5.14",
"@types/secp256k1": "^4.0.6",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"ts-jest": "^29.2.5",
"tsc-alias": "^1.8.10",
"tsd": "^0.31.2",
"typescript": "^5.7.2"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
}
}
}