-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.37 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.37 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
{
"name": "selftune",
"version": "0.2.1",
"description": "Self-improving skills CLI for AI agents",
"type": "module",
"license": "MIT",
"author": "Daniel Petro",
"homepage": "https://github.com/selftune-dev/selftune#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/selftune-dev/selftune.git"
},
"bugs": {
"url": "https://github.com/selftune-dev/selftune/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/WellDunDun"
},
"keywords": [
"selftune",
"skill",
"self-improving",
"claude-code",
"codex",
"opencode",
"eval",
"grading",
"evolution",
"cli",
"agent",
"telemetry",
"bun",
"typescript"
],
"bin": {
"selftune": "bin/selftune.cjs"
},
"files": [
"assets/",
"bin/",
"cli/selftune/",
"dashboard/",
"packages/telemetry-contract/",
"templates/",
".claude/agents/",
"skill/",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"lint": "bunx @biomejs/biome check .",
"lint:fix": "bunx @biomejs/biome check --write .",
"lint:arch": "bun run lint-architecture.ts",
"test": "bun test",
"check": "bun run lint && bun run lint:arch && bun test",
"start": "bun run cli/selftune/index.ts --help"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@types/bun": "^1.1.0"
}
}