-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.39 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
{
"name": "@ruvnet/sparc",
"version": "1.0.0",
"description": "Deterministic SPARC metaharness with MCP transports and shared Claude and ChatGPT skills",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"sparc": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"import": "./dist/mcp/index.js"
},
"./metaharness": {
"types": "./dist/metaharness.d.ts",
"import": "./dist/metaharness.js"
},
"./skills": {
"types": "./dist/skills.d.ts",
"import": "./dist/skills.js"
}
},
"files": [
"dist",
"skills",
"plugins/sparc",
"templates",
"docs",
"README.md",
"LICENSE",
"SECURITY.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepack": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run check",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"scan:secrets": "node scripts/scan-secrets.mjs",
"validate:plugins": "node scripts/validate-plugins.mjs",
"pack:check": "npm pack --dry-run",
"check": "npm run scan:secrets && npm run validate:plugins && npm run typecheck && npm run test:coverage && npm run build && npm run pack:check"
},
"dependencies": {
"@metaharness/flywheel": "0.1.10",
"@metaharness/harness": "0.2.0",
"@metaharness/horizon": "0.2.0",
"@metaharness/kernel": "0.1.3",
"@metaharness/sdk": "0.1.0",
"@modelcontextprotocol/sdk": "1.30.0",
"jose": "6.2.10",
"zod": "3.25.76"
},
"devDependencies": {
"@types/node": "20.19.43",
"@vitest/coverage-v8": "4.1.11",
"typescript": "5.9.3",
"vitest": "4.1.11"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruvnet/SPARC.git"
},
"bugs": {
"url": "https://github.com/ruvnet/SPARC/issues"
},
"homepage": "https://github.com/ruvnet/SPARC#readme",
"keywords": [
"sparc",
"mcp",
"metaharness",
"claude",
"chatgpt",
"codex"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"doc": "docs",
"example": "example",
"test": "tests"
},
"author": "ruvnet"
}