-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 2.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 2.03 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
{
"name": "loom",
"version": "0.9.0",
"description": "AI-powered development orchestration: a CLI + daemon that coordinates AI development workers using git worktrees and a forge (GitHub or Gitea) as the coordination layer.",
"type": "module",
"scripts": {
"daemon:dev": "./scripts/dev-daemon.sh",
"daemon:headless": "./scripts/daemon-headless.sh",
"daemon:stop": "./scripts/stop-daemon.sh",
"daemon:preview": "cargo run --package loom-daemon --release",
"daemon:build": "cargo build --package loom-daemon --release && rm -f target/release/loom-daemon-aarch64-apple-darwin && cp target/release/loom-daemon target/release/loom-daemon-aarch64-apple-darwin",
"daemon:test": "cargo test --package loom-daemon",
"logs:clean": "rm -f /tmp/loom-*.log /tmp/app-*.log /tmp/daemon-*.log /tmp/factory-reset-*.log",
"check": "cargo check --workspace",
"format:rust": "cargo fmt --all -- --check",
"format:rust:write": "cargo fmt --all",
"clippy": "cargo clippy --workspace --all-targets --all-features -- -D warnings",
"clippy:locked": "cargo clippy --workspace --all-targets --all-features --locked -- -D warnings",
"clippy:fix": "cargo clippy --workspace --all-targets --all-features --fix --allow-dirty --allow-staged",
"test": "cargo test --workspace --locked --all-features --no-fail-fast -- --nocapture",
"test:python": "cd loom-tools && uv run pytest tests/ -x -q",
"check:all": "pnpm format:rust && pnpm clippy && pnpm check && pnpm test",
"check:ci": "pnpm format:rust && pnpm clippy:locked && pnpm check && pnpm test && pnpm test:python",
"worktree": "./scripts/worktree.sh",
"worktree:return": "./.loom/scripts/worktree-return.sh",
"clean": "./clean.sh",
"prepare": "git config core.hooksPath .githooks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rjwalters/loom.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rjwalters/loom/issues"
},
"homepage": "https://github.com/rjwalters/loom#readme"
}