forked from jgmontoya/shaka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 922 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 922 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
{
"name": "shaka",
"version": "0.5.0",
"description": "A personal AI assistant framework. Provider-agnostic. Your data stays yours.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jgmontoya/shaka.git"
},
"type": "module",
"main": "src/index.ts",
"bin": {
"shaka": "src/index.ts"
},
"scripts": {
"dev": "bun run src/index.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"lint:all": "biome check .",
"lint:all:fix": "biome check --write .",
"format": "biome format --write .",
"check": "bun run typecheck && bun run lint && bun test"
},
"dependencies": {
"commander": "^13.0.0",
"eta": "^3.5.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/bun": "latest",
"typescript": "^5.7.0"
}
}