-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
157 lines (157 loc) · 8.25 KB
/
package.json
File metadata and controls
157 lines (157 loc) · 8.25 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "strray-ai",
"version": "1.10.5",
"description": "⚡ StringRay ⚡: Bulletproof AI orchestration with systematic error prevention. Zero dead ends. Ship clean, tested, optimized code — every time.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/htafolla/stringray.git"
},
"homepage": "https://github.com/htafolla/stringray#readme",
"bugs": {
"url": "https://github.com/htafolla/stringray/issues"
},
"keywords": [
"ai",
"claude",
"opencode",
"mcp",
"agent",
"orchestration",
"codex",
"error-prevention",
"seo",
"multi-agent",
"framework",
"development",
"automation",
"testing",
"security"
],
"type": "module",
"main": "./dist/plugin/strray-codex-injection.js",
"types": "./dist/plugin/strray-codex-injection.d.ts",
"bin": {
"strray-ai": "dist/cli/index.js",
"strray-integration": "dist/scripts/integration.js",
"strray-analytics": "dist/scripts/analytics/daily-routing-analysis.js"
},
"opencode": {
"plugin": "./dist/plugin/strray-codex-injection.js",
"mcps": "./dist/plugin/mcps/"
},
"scripts": {
"version:bump": "node scripts/node/version-manager.mjs",
"version": "node scripts/node/version-manager.mjs",
"build": "tsc",
"build:all": "npm run build",
"build:copy-plugins": "node -e \"const fs=require('fs');['.opencode/plugin'].forEach(d=>{try{fs.mkdirSync(d,{recursive:true});fs.cpSync('dist/plugin/strray-codex-injection.js',d+'/strray-codex-injection.js');console.log('Copied to',d)}catch(e){console.error('Error:',e.message)}})\"",
"ci-install": "npm ci",
"clean": "rm -rf dist",
"prepublishOnly": "npm run prepare-consumer && npm run build:all",
"test": "vitest run",
"test:batch": "npm test",
"test:unit": "npm test -- src/__tests__/unit/boot-orchestrator.test.ts src/__tests__/unit/config-loader.test.ts src/__tests__/unit/state-manager.test.ts src/__tests__/unit/state-manager-persistence.test.ts src/__tests__/unit/context-loader.test.ts src/__tests__/unit/pattern-analyzer.test.ts src/__tests__/unit/complexity-calibrator.test.ts",
"test:core-framework": "npm test -- src/__tests__/unit/agent-delegator.test.ts src/__tests__/unit/self-direction-activation.test.ts src/__tests__/unit/ast-code-parser.test.ts src/__tests__/unit/orchestrator.test.ts",
"test:security": "npm test -- src/__tests__/unit/security/security-hardener.test.ts src/__tests__/unit/security/security-headers.test.ts src/__tests__/unit/security/security-auditor.test.ts",
"test:performance": "npm test -- src/__tests__/unit/monitoring.test.ts src/__tests__/unit/benchmark.test.ts src/__tests__/unit/analytics.test.ts",
"test:session-management": "npm test -- src/__tests__/unit/session-state-manager.test.ts src/__tests__/unit/session-security-validator.test.ts src/__tests__/unit/session-coordination-validator.test.ts src/__tests__/unit/session-migration-validator.test.ts src/__tests__/unit/session-migration-logic.test.ts src/__tests__/unit/session-health-monitoring.test.ts",
"test:code-analysis": "npm test -- src/__tests__/unit/codebase-context-analyzer.test.ts src/__tests__/unit/dependency-graph-builder.test.ts src/__tests__/unit/rule-enforcer.test.ts src/__tests__/unit/codex-parser.test.ts src/__tests__/unit/codex-injector.test.ts",
"test:processors": "npm test -- src/__tests__/unit/processor-activation.test.ts",
"test:miscellaneous": "npm test -- src/__tests__/unit/blocked-test.test.ts",
"test:quick": "npm test -- src/__tests__/integration/boot-orchestrator.integration.test.ts src/__tests__/unit/config-loader.test.ts src/__tests__/unit/state-manager.test.ts",
"test:comprehensive": "npm run test:unit && npm run test:core-framework && npm run test:security && npm run test:performance && npm run test:session-management && npm run test:code-analysis && npm run test:processors && npm run test:miscellaneous",
"test:integration-all": "npm test -- src/__tests__/integration/",
"test:performance-all": "npm test -- src/__tests__/performance/ src/__tests__/unit/performance-system.test.ts src/__tests__/unit/benchmark.test.ts src/__tests__/unit/analytics.test.ts",
"test:agents-all": "npm test -- src/__tests__/agents/",
"test:infrastructure": "npm test -- src/__tests__/infrastructure/",
"test:root": "npm test -- src/__tests__/integration/server.test.ts src/__tests__/framework-enforcement-integration.test.ts",
"analytics:daily": "node dist/scripts/analytics/daily-routing-analysis.js",
"analytics:daily:preview": "node dist/scripts/analytics/daily-routing-analysis.js --preview",
"analytics:daily:apply": "node dist/scripts/analytics/daily-routing-analysis.js --apply",
"test:full-suite": "npm run test:integration-all && npm run test:performance-all && npm run test:agents-all && npm run test:infrastructure && npm run test:root",
"postinstall": "node scripts/node/postinstall.cjs",
"setup-dev": "node scripts/node/setup-dev.cjs",
"prepare-consumer": "node scripts/node/prepare-consumer.cjs",
"typecheck": "tsc --noEmit",
"lint": "eslint -c tests/config/eslint.config.js src",
"lint:fix": "eslint -c tests/config/eslint.config.js src --fix",
"security-audit": "npm audit || true",
"test:security-audit": "npm run test:security",
"test:dependency-scan": "npm run security-audit",
"test:integration": "node scripts/mjs/test-consumer-readiness.mjs && node scripts/mjs/test-mcp-functionality.mjs",
"test:e2e": "node scripts/node/validate-mcp-connectivity.js && node scripts/node/validate-external-processes.js",
"validate": "node scripts/validate-stringray-comprehensive.js",
"validate:quick": "node scripts/validate-stringray-comprehensive.js --quick",
"validate:full": "node scripts/validate-stringray-comprehensive.js --full",
"test:modules": "node scripts/test-es-modules.mjs",
"fix:modules": "node scripts/fix-module-compatibility.js",
"test:unified": "node scripts/test/test-unified-framework.mjs",
"test:plugin": "node scripts/test/test-stray-plugin.mjs",
"test:consumer": "node scripts/test/test-consumer-readiness.cjs",
"config:setup": "node scripts/config/utils.js setup-dev",
"monitoring:start": "node scripts/monitoring/daemon.js start",
"monitoring:stop": "node scripts/monitoring/daemon.js stop",
"monitoring:report": "node scripts/monitoring/daemon.js report",
"build:run": "node scripts/build/utils.js build",
"build:clean": "node scripts/build/utils.js clean",
"build:verify": "node scripts/build/utils.js verify",
"enforce:versions": "bash scripts/node/enforce-version-compliance.sh",
"version:sync": "node scripts/node/universal-version-manager.js",
"preversion": "npm run version:sync",
"pre-publish-guard": "node scripts/node/pre-publish-guard.js",
"safe-publish": "npm run pre-publish-guard && npm run prepare-consumer && npm run build && npm publish",
"publish": "npm run pre-publish-guard && npm run safe-publish",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major",
"release": "node scripts/node/release.mjs"
},
"files": [
"dist/",
"scripts/node/",
"scripts/mjs/",
"scripts/integrations/",
".opencode/agents/",
".opencode/commands/",
".opencode/hooks/",
".opencode/skills/",
".opencode/integrations/",
".opencode/strray/",
".opencode/workflows/",
".opencode/state/",
".opencode/codex.codex",
".opencode/enforcer-config.json",
".opencode/init.sh",
".opencode/package.json",
".opencode/plugins/",
".strray/",
"opencode.json",
"README.md",
"AGENTS.md",
"AGENTS-consumer.md",
"LICENSE",
"LICENSE.claude-seo",
"LICENSE.antigravity"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@types/jsonwebtoken": "^9.0.10",
"commander": "^11.1.0",
"jsonwebtoken": "^9.0.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^10.3.0",
"@types/express": "^5.0.6",
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^8.57.1",
"vitest": "^4.0.18"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.30.1"
}
}