-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.74 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
{
"name": "@grainulation/wheat",
"version": "1.1.8",
"description": "Research-driven development framework — structured claims, compiled evidence, deterministic output",
"license": "MIT",
"author": "grainulation contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/grainulation/wheat.git"
},
"homepage": "https://wheat.grainulation.com",
"bugs": {
"url": "https://github.com/grainulation/wheat/issues"
},
"keywords": [
"wheat-framework",
"research-sprint",
"claims-compiler",
"claude-code",
"structured-research",
"evidence-graded",
"decision-framework",
"research-driven-development",
"developer-research",
"technical-decision-making"
],
"type": "module",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./compiler": "./lib/compiler.js",
"./server": "./lib/server.js",
"./guard": "./lib/guard.js",
"./connect": "./lib/connect.js",
"./mcp": "./lib/serve-mcp.js",
"./load-claims": "./lib/load-claims.js"
},
"bin": {
"wheat": "bin/wheat.js",
"wheat-mcp": "bin/wheat-mcp.cjs"
},
"files": [
"bin/",
"lib/",
"compiler/",
"public/",
"templates/",
"README.md",
"LICENSE",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"SECURITY.md",
"CHANGELOG.md"
],
"scripts": {
"test": "node --test test/cli.test.js test/compiler.test.js test/guard.test.js test/init.test.js test/migration.test.js test/mcp.test.js test/claims-ops.test.js test/load-claims.test.js test/status.test.js test/connect.test.js test/hints.test.js test/tarball.test.js",
"format": "npx prettier@3.3 --write .",
"format:check": "npx prettier@3.3 --check ."
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@grainulation/barn": "^1.3.0"
}
}