-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.33 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
{
"name": "smite",
"version": "2.5.1",
"description": "SMITE - Multi-agent orchestration with cross-platform support, lazy loading, hooks system, MCP integration, and comprehensive test coverage",
"private": true,
"type": "module",
"workspaces": [
"plugins/*"
],
"scripts": {
"test": "npm run test --workspaces --if-present",
"test:cross-platform": "node scripts/test-cross-platform.js",
"test:all": "npm run test:cross-platform && npm run test --workspaces --if-present",
"test:studio": "npm run test --workspace=plugins/studio",
"test:agents": "npm run test --workspace=plugins/agents",
"test:essentials": "npm run test --workspace=plugins/essentials",
"test:core": "npm run test --workspace=plugins/core",
"test:coverage": "npm run test --workspaces --if-present -- --coverage",
"lint": "npm run lint --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"clean": "rm -rf plugins/*/dist plugins/*/node_modules"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"keywords": [
"smite",
"claude-code",
"multi-agent",
"refactoring",
"code-quality",
"unified-agents"
],
"author": "Pamacea",
"license": "MIT"
}