-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 999 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 999 Bytes
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
{
"name": "@oni.bot/code",
"version": "0.1.0",
"description": "The ONI AI coding assistant — powered by @oni.bot/core",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"oni": "./dist/bin.js",
"oni-code": "./dist/bin.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"verify": "npm run typecheck && npm test",
"dev": "tsc --watch"
},
"dependencies": {
"@oni.bot/core": "^1.0.1",
"dotenv": "^16.0.0",
"ink": "^5.2.1",
"react": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.3.28",
"ink-testing-library": "^4.0.0",
"tsx": "^4.21.0",
"typescript": "^5.4.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT"
}