-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 2.12 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
{
"name": "@smooai/smooth",
"version": "0.26.5",
"description": "Security-first AI agent orchestration platform",
"homepage": "https://github.com/SmooAI/smooth#readme",
"bugs": {
"url": "https://github.com/SmooAI/smooth/issues"
},
"license": "MIT",
"author": {
"name": "SmooAI",
"email": "brent@smooai.com",
"url": "https://smooai.com"
},
"repository": {
"type": "git",
"url": "https://github.com/SmooAI/smooth.git"
},
"scripts": {
"prepare": "husky",
"pre-commit-check": "cargo fmt -- --check && cargo clippy --workspace --all-targets",
"build:web": "pnpm -C crates/smooth-web/web install --silent && pnpm -C crates/smooth-web/web build",
"build:smooth-dolt": "bash scripts/build-smooth-dolt.sh",
"build:smooth-dolt:if-stale": "bash scripts/build-smooth-dolt.sh --if-stale",
"install:smooth-dolt": "bash scripts/install-smooth-dolt-to-cargo-bin.sh",
"install:th": "pnpm build:web && pnpm build:smooth-dolt:if-stale && pnpm install:smooth-dolt && cargo install --path crates/smooth-cli --features admin --force && cargo install --path crates/smooth-daemon --force",
"install:th:full": "pnpm build:web && pnpm build:smooth-dolt && pnpm install:smooth-dolt && cargo install --path crates/smooth-cli --features admin --force && cargo install --path crates/smooth-daemon --force",
"install:th:brew": "brew upgrade SmooAI/tools/th || brew install SmooAI/tools/th",
"install:skills": "bash scripts/install-skills.sh",
"dev:service": "pnpm install:th && th service restart",
"dev:service:install": "pnpm install:th && th service install && th service start",
"version:sync": "node scripts/sync-versions.mjs",
"ci:version": "node scripts/ci-version.mjs",
"ci:publish": "node scripts/ci-publish.mjs",
"changeset": "changeset",
"aichangeset": "changeset"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"husky": "^9.1.7"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.6.1"
}