-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.79 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.79 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
{
"name": "forgeops",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22"
},
"bin": {
"forgeops": "bin/forgeops"
},
"scripts": {
"start": "node src/cli/index.js start",
"init:dev": "node src/cli/index.js project init",
"release:oss": "bash scripts/release-oss.sh",
"check": "node --check src/cli/index.js && node --check src/core/project-init.js && node --check src/core/store.js && node --check src/core/git.js && node --check src/core/skills.js && node --check src/core/skill-selection.js && node --check src/core/invariants.js && node --check src/core/scheduler-config.js && node --check src/core/system-config.js && node --check src/core/machine-info.js && node --check src/core/service-manager.js && node --check src/core/platform-toolchain.js && node --check src/core/workflow-config.js && node --check src/core/templates/invariants-checker.mjs && node --check src/core/templates/invariants-smoke.mjs && node --check src/server/app.js && node --check src/worker/engine.js && node --check src/worker/scheduler.js && node --check src/runtime/codex-exec-json.js && node --check src/runtime/codex-app-server.js && node --check src/runtime/codex-managed.js && node --check src/runtime/preflight.js",
"docs:check": "node scripts/check-doc-freshness.js && node scripts/check-doc-structure.js",
"docs:site:dev": "vitepress dev docs --host 127.0.0.1 --port 5174",
"docs:site:build": "vitepress build docs",
"docs:site:preview": "vitepress preview docs --host 127.0.0.1 --port 4174",
"frontend:dev": "npm --prefix frontend run dev",
"frontend:build": "npm --prefix frontend run build"
},
"dependencies": {
"node-cron": "^4.2.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"vitepress": "^1.6.4"
}
}