-
Notifications
You must be signed in to change notification settings - Fork 247
/
package.json
72 lines (72 loc) · 2.28 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
{
"name": "@builder.io/micro-agent",
"description": "An AI CLI that writes code for you.",
"version": "0.1.5",
"type": "module",
"dependencies": {
"@anthropic-ai/sdk": "^0.21.1",
"@clack/core": "latest",
"@clack/prompts": "latest",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@dqbd/tiktoken": "^1.0.15",
"@types/diff": "^5.2.1",
"@types/probe-image-size": "^7.2.4",
"cleye": "^1.3.2",
"dedent": "^0.7.0",
"diff": "^5.2.0",
"execa": "^9.1.0",
"glob": "^10.4.1",
"ini": "^4.1.3",
"kolorist": "^1.7.0",
"ollama": "^0.5.1",
"openai": "^4.47.1",
"playwright": "^1.44.1",
"probe-image-size": "^7.2.3",
"sharp": "^0.33.4"
},
"repository": {
"type": "git",
"url": "https://github.com/BuilderIO/micro-agent"
},
"files": [
"dist"
],
"bin": {
"micro-agent": "./dist/cli.mjs",
"ma": "./dist/cli.mjs"
},
"scripts": {
"test": "vitest run --exclude src/tests/integration",
"test:integration": "vitest run src/tests/integration --exclude src/tests/integration/add.test.ts --poolOptions.threads.singleThread",
"test:all": "vitest run",
"start": "jiti ./src/cli.ts",
"lint:fix": "prettier --write . && eslint --fix",
"lint": "prettier --check . && eslint",
"typecheck": "tsc",
"build": "pkgroll",
"release:patch": "npm run build && standard-version --release-as patch git push --follow-tags origin main && npm publish",
"standard-version:release": "standard-version",
"standard-version:release:minor": "standard-version --release-as minor",
"standard-version:release:major": "standard-version --release-as major",
"standard-version:release:patch": "standard-version --release-as patch",
"postinstall": "npx playwright install",
"prepare": "husky install"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/ini": "^1.3.31",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"jiti": "^1.21.3",
"pkgroll": "^1.11.1",
"prettier": "^2.8.8",
"standard-version": "^9.5.0",
"typescript": "^4.9.5",
"vitest": "^1.6.0"
}
}