-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.76 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
{
"name": "@autoblocks/cli",
"version": "0.0.0-automated",
"description": "Command-line interface for the Autoblocks platform",
"bin": {
"autoblocks": "bin/cli.js"
},
"files": [
"bin",
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"type-check": "tsc --noEmit --skipLibCheck",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autoblocksai/cli.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/autoblocksai/cli/issues"
},
"homepage": "https://github.com/autoblocksai/cli#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@autoblocks/client": "^0.0.86",
"@hono/node-server": "^1.7.0",
"@hono/zod-validator": "^0.4.0",
"axios": "^1.7.4",
"axios-retry": "^4.5.0",
"hono": "^4.0.0",
"ink": "^5.0.0",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"yargs": "^17.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@types/lodash": "^4.17.5",
"@types/node": "^20.11.16",
"@types/react": "^18.2.55",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}