-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.41 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.41 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
73
74
{
"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/",
"apps/local-dashboard/dist/",
"packages/telemetry-contract/",
"templates/",
".claude/agents/",
"skill/",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"dev": "sh -c 'if lsof -iTCP:7888 -sTCP:LISTEN >/dev/null 2>&1; then if curl -fsS http://127.0.0.1:7888/api/health | grep -q selftune-dashboard; then echo \"Using existing dashboard server on 7888\"; cd apps/local-dashboard && bun install && bunx vite --strictPort; else echo \"Port 7888 is occupied by a non-selftune service\"; exit 1; fi; else cd apps/local-dashboard && bun install && bun run dev; fi'",
"dev:dashboard": "bun run cli/selftune/index.ts dashboard --port 7888 --no-open",
"lint": "bunx @biomejs/biome check .",
"lint:fix": "bunx @biomejs/biome check --write .",
"lint:arch": "bun run lint-architecture.ts",
"test": "bun test",
"test:fast": "bun test $(find tests -name '*.test.ts' ! -name 'evolve.test.ts' ! -name 'integration.test.ts' ! -name 'dashboard-server.test.ts' ! -path '*/blog-proof/*')",
"test:slow": "bun test tests/evolution/evolve.test.ts tests/evolution/integration.test.ts tests/monitoring/integration.test.ts tests/dashboard/dashboard-server.test.ts",
"build:dashboard": "cd apps/local-dashboard && bun install && bunx vite build",
"check": "bun run lint && bun run lint:arch && bun test",
"start": "bun run cli/selftune/index.ts --help"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@selftune/telemetry-contract": "workspace:*"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@types/bun": "^1.1.0"
}
}