-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.66 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.66 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "oli",
"version": "0.1.4-post1",
"description": "A simple, blazingly fast terminal based AI coding assistant",
"type": "module",
"bin": {
"oli": "./bin/oli"
},
"scripts": {
"postinstall": "node ./scripts/install.js",
"build": "cd app && tsc",
"start": "node --import tsx app/dist/cli.js",
"dev": "tsx watch app/src/cli.ts",
"lint": "cd app && npm run lint",
"format": "cd app && npm run format"
},
"repository": {
"type": "git",
"url": "https://github.com/amrit110/oli.git"
},
"keywords": [
"ai",
"assistant",
"coding",
"tui",
"cli"
],
"author": "Amrit Krishnan",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/amrit110/oli/issues"
},
"homepage": "https://github.com/amrit110/oli#readme",
"os": [
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
],
"engines": {
"node": ">=23.10.0"
},
"dependencies": {
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/register": "^7.25.9",
"@types/node": "^22.14.1",
"@types/react": "^19.1.2",
"axios": "^1.6.2",
"ink": "^5.2.0",
"ink-link": "^4.1.0",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^18.3.1",
"tar": "^6.1.15",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.24.0",
"eslint-plugin-react": "^7.37.5",
"prettier": "^3.5.3",
"typescript-eslint": "^8.30.1"
}
}