-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 4.77 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 4.77 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "onpeople-desktop",
"version": "0.30.1",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/userInner/OnPeople.git"
},
"homepage": "https://aibro.vip/onpeople/",
"description": "OnPeople local agent workbench with an Electron shell and Rust core.",
"type": "module",
"main": "electron-spike/main.mjs",
"engines": {
"node": ">=22"
},
"scripts": {
"start": "npm run electron:dev",
"dev": "vite --host 127.0.0.1 --port 1420",
"build": "npm run bindings:check && tsc -b && vite build",
"tauri": "tauri",
"tauri:start": "tauri dev --config src-tauri/tauri.dev.conf.json",
"tauri:dev": "tauri dev --config src-tauri/tauri.dev.conf.json",
"tauri:build": "npm run runtime:prepare && tauri build",
"bindings": "cargo run -p xtask -- bindings",
"bindings:check": "cargo run -p xtask -- bindings --check",
"audit": "cargo run -p xtask -- audit",
"runtime:stage": "cargo run -p xtask -- stage-runtime",
"runtime:build": "cargo build --release -p onpeople-mcp-host -p onpeople-cli",
"runtime:prepare": "npm run runtime:build && npm run runtime:stage && npm run package:contents",
"runtime:sign": "cargo run -p xtask -- sign-macos-runtime",
"package:contents": "cargo run -p xtask -- package-contents",
"package:msix": "cargo run -p xtask -- package-msix",
"package:win:cross": "node scripts/package-win-cross.mjs",
"package:macos-zip": "cargo run -p xtask -- package-macos-zip",
"smoke:agent-runtime": "cargo run -p xtask -- smoke-agent-runtime",
"smoke:headless-runtime": "cargo run -p xtask -- smoke-headless-runtime",
"release:gate": "cargo run -p xtask -- release-gate",
"tauri:release": "npm run runtime:prepare && npm run runtime:sign && tauri build && npm run release:gate",
"electron:rust:build": "cargo build -p onpeople-desktop-host",
"electron:rust:release": "cargo build --release -p onpeople-desktop-host",
"electron:dev": "npm run electron:rust:build && npm run build && node electron-spike/run-dev.mjs",
"electron:stage": "node electron-spike/stage-runtime.mjs",
"electron:package": "npm run electron:rust:release && npm run build && npm run electron:stage && electron-builder --config electron-spike/electron-builder.yml --mac dir dmg zip && npm run electron:package:verify",
"electron:package:windows": "node scripts/package-electron-windows.mjs",
"electron:package:verify": "node electron-spike/verify-package.mjs",
"electron:measure": "node electron-spike/measure.mjs",
"electron:browser:test": "node --test electron-spike/*.test.mjs",
"electron:browser:acceptance": "node electron-spike/browser-acceptance.mjs",
"check": "npm run check:core && npm run test:e2e",
"check:core": "npm run audit && npm run format:check && npm run lint && npm run test && npm run test:eval-harness && npm run build && cargo fmt --all -- --check && cargo clippy --workspace --all-targets -- -D warnings && cargo test --workspace",
"test": "vitest run --config vitest.config.ts",
"test:eval-harness": "node --test scripts/run-evals.test.mjs",
"test:e2e": "playwright test",
"eval": "node scripts/run-evals.mjs",
"eval:list": "node scripts/run-evals.mjs --list",
"onpeople": "cargo run -q -p onpeople-cli --",
"lint": "eslint frontend --max-warnings 0",
"format:check": "prettier --check frontend scripts/run-evals.mjs scripts/run-evals.test.mjs evals README.md index.html vite.config.ts tsconfig*.json",
"xtask": "cargo run -p xtask --"
},
"dependencies": {
"@tauri-apps/api": "2.11.1",
"@tauri-apps/plugin-clipboard-manager": "2.3.2",
"@tauri-apps/plugin-dialog": "2.7.2",
"@tauri-apps/plugin-notification": "2.3.3",
"@tauri-apps/plugin-updater": "2.10.0",
"@xterm/addon-clipboard": "0.1.0",
"@xterm/addon-fit": "0.10.0",
"@xterm/addon-web-links": "0.11.0",
"@xterm/xterm": "5.5.0",
"dompurify": "3.4.13",
"lucide-react": "0.544.0",
"marked": "18.0.7",
"pdfjs-dist": "5.4.296",
"react": "19.2.8",
"react-dom": "19.2.8",
"zustand": "5.0.14"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@playwright/test": "1.61.1",
"@tauri-apps/cli": "2.11.4",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/node": "25.3.5",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"electron": "42.3.0",
"electron-builder": "26.15.3",
"eslint": "9.39.2",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"globals": "17.3.0",
"jsdom": "28.1.0",
"prettier": "3.8.2",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vite": "8.2.0",
"vitest": "4.1.0"
}
}