runbrief 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. package/LICENSE +201 -0
  2. package/NOTICE +6 -0
  3. package/README.md +75 -0
  4. package/dist/cli.js +41893 -0
  5. package/package.json +60 -0
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "runbrief",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "Brief Connector: the local MCP companion for repo context, reuse guidance, review gates, and handoff proof.",
6
+ "type": "module",
7
+ "bin": {
8
+ "brief": "dist/cli.js",
9
+ "brief-mcp": "dist/cli.js",
10
+ "runbrief": "dist/cli.js"
11
+ },
12
+ "files": [
13
+ "dist/cli.js",
14
+ "README.md",
15
+ "LICENSE",
16
+ "NOTICE"
17
+ ],
18
+ "engines": {
19
+ "node": ">=20"
20
+ },
21
+ "scripts": {
22
+ "build": "pnpm --filter @brief/contracts build && pnpm --filter @brief/core build && node scripts/build.mjs",
23
+ "check": "pnpm build && node scripts/smoke.mjs",
24
+ "test": "pnpm build && node scripts/smoke.mjs && node --test scripts/publish.test.mjs",
25
+ "pack:check": "pnpm build && node scripts/pack-check.mjs",
26
+ "release:check": "node scripts/verify-release.mjs && node --test scripts/publish.test.mjs && pnpm pack:check",
27
+ "prepack": "pnpm build && node scripts/smoke.mjs",
28
+ "prepublishOnly": "node scripts/verify-release.mjs"
29
+ },
30
+ "dependencies": {
31
+ "@modelcontextprotocol/sdk": "^1.29.0",
32
+ "ignore": "^6.0.2",
33
+ "typescript": "^5.7.2",
34
+ "zod": "^3.24.1"
35
+ },
36
+ "devDependencies": {
37
+ "esbuild": "^0.25.12"
38
+ },
39
+ "keywords": [
40
+ "mcp",
41
+ "coding-agent",
42
+ "claude-code",
43
+ "codex",
44
+ "cursor",
45
+ "code-review"
46
+ ],
47
+ "homepage": "https://www.runbrief.ai",
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/orgzania/brief.git",
51
+ "directory": "packages/runbrief"
52
+ },
53
+ "bugs": {
54
+ "url": "https://www.runbrief.ai/support"
55
+ },
56
+ "license": "Apache-2.0",
57
+ "publishConfig": {
58
+ "access": "public"
59
+ }
60
+ }