-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.51 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@callstack/ai-cli",
"version": "0.10.0-next.1",
"description": "AI assistent in your terminal.",
"author": "Maciej Jastrzebski <[email protected]> (https://github.com/mdjastrzebski)",
"homepage": "https://github.com/callstack/ai-cli#readme",
"license": "MIT",
"keywords": [
"ai",
"cli"
],
"type": "module",
"main": "build/index.js",
"source": "src/index.js",
"bin": {
"ai": "./bin.js"
},
"files": [
"bin.js",
"dist",
"!**/__tests__",
"!**/__mocks__"
],
"scripts": {
"build": "rslib build",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"clean": "del-cli build",
"release": "release-it",
"release:next": "release-it --preRelease=next",
"ai": "yarn build && ./bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/callstack/ai-cli.git"
},
"bugs": {
"url": "https://github.com/callstack/ai-cli/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.56",
"@ai-sdk/mistral": "^0.0.46",
"@ai-sdk/openai": "^0.0.72",
"@callstack/byorg-core": "0.3.1",
"@inkjs/ui": "^1.0.0",
"chalk": "^5.3.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"ink": "^4.4.1",
"ink-link": "^3.0.0",
"ink-text-input": "^5.0.1",
"prompts": "^2.4.2",
"react": "^18.3.1",
"redent": "^4.0.0",
"tiktoken": "^1.0.17",
"update-notifier": "^7.3.1",
"yargs": "^17.7.2",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@callstack/eslint-config": "^14.2.0",
"@release-it/conventional-changelog": "^5.1.1",
"@rslib/core": "^0.0.16",
"@types/jest": "^29.5.14",
"@types/mock-fs": "^4.13.4",
"@types/prompts": "^2.4.9",
"@types/react": "^18.3.12",
"@types/update-notifier": "^6.0.8",
"@vitest/coverage-v8": "^2.1.4",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"memfs": "^4.14.0",
"mock-fs": "^5.4.1",
"prettier": "^3.3.3",
"release-it": "^15.11.0",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 18.0.0"
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"useTabs": false
}
}