-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.05 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
{
"name": "kri",
"version": "0.1.0",
"description": "Universal agentic bootstrapper for JS/TS codebases",
"type": "module",
"bin": {
"kri": "bin/kri"
},
"files": [
"bin",
"server",
"agent",
"overlay",
"injector",
"daemon",
"utils",
"README.md"
],
"main": "server/index.ts",
"scripts": {
"start": "ts-node --esm server/index.ts",
"dev": "ts-node --esm server/index.ts",
"test": "node --test test/**/*.js 2>/dev/null || echo \"No tests yet\"",
"build": "tsc",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderhema/kri.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/coderhema/kri/issues"
},
"homepage": "https://github.com/coderhema/kri#readme",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.21.0",
"level": "^10.0.0",
"openai": "^4.0.0",
"playwright": "^1.49.0"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}