-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.99 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@zerodev/orchestra",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"changeset": "changeset",
"changeset:release": "bun run build && changeset publish",
"changeset:version": "changeset version && bun install --lockfile-only",
"dev": "ts-node src/index.ts",
"format": "biome format ./src --write",
"lint": "biome check ./src",
"lint:fix": "bun run lint --apply",
"start": "node dist/index.js"
},
"bin": {
"zerodev": "./dist/index.js"
},
"keywords": [
"contract",
"account-abstraction",
"cli"
],
"author": {
"name": "ZeroDev",
"url": "https://docs.zerodev.app/"
},
"contributors": [
{
"name": "leekt",
"email": "leekt216@gmail.com"
},
{
"name": "derekchiang",
"email": "me@derekchiang.com"
},
{
"name": "adnpark",
"email": "aidenp.dev@gmail.com"
}
],
"license": "MIT",
"dependencies": {
"@zerodev/sdk": "^5.3.3",
"@zerodev/ecdsa-validator": "^5.3.1",
"chalk": "4.1.2",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"figlet": "^1.7.0",
"ora": "^8.0.1",
"tslib": "^2.6.2"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@changesets/changelog-git": "^0.1.14",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.27.1",
"@size-limit/esbuild-why": "^9.0.0",
"@size-limit/preset-small-lib": "^9.0.0",
"@types/figlet": "^1.5.8",
"@types/node": "^18.19.4",
"@types/ora": "^3.2.0",
"simple-git-hooks": "^2.9.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"simple-git-hooks": {
"pre-commit": "bun run format && bun run lint"
}
}