-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 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
{
"name": "@team-agent/installer",
"version": "0.1.11",
"description": "npx installer for Team Agent",
"keywords": [
"codex",
"claude",
"tmux",
"multi-agent"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Florious95/team-agent.git"
},
"homepage": "https://github.com/Florious95/team-agent#readme",
"bugs": {
"url": "https://github.com/Florious95/team-agent/issues"
},
"bin": {
"team-agent-installer": "npm/install.mjs"
},
"scripts": {
"test": "PYTHONPATH=src python3 tests/run_tests.py",
"test:regression": "PYTHONPATH=src python3 scripts/run_regression_tests.py --iterations 3",
"test:rust": "cargo test --manifest-path crates/team-agent-core/Cargo.toml",
"pack:dry-run": "npm pack --dry-run"
},
"files": [
"npm",
"scripts",
"src",
"skills",
"templates",
"examples",
"schemas",
"crates/team-agent-core/Cargo.toml",
"crates/team-agent-core/src",
"pyproject.toml",
"README.md",
"README.zh.md",
"LICENSE",
"!**/__pycache__/**",
"!**/*.pyc",
"!**/target/**"
],
"engines": {
"node": ">=18"
},
"license": "AGPL-3.0-or-later"
}