-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"name": "@igmagollo/suggestion-box",
"version": "0.4.0",
"description": "Centralized feedback registry MCP for coding agents and subagents.",
"repository": {
"type": "git",
"url": "https://github.com/igmagollo/suggestion-box"
},
"type": "module",
"main": "dist/sdk.js",
"types": "dist/sdk.d.ts",
"exports": {
".": {
"types": "./dist/sdk.d.ts",
"import": "./dist/sdk.js"
}
},
"bin": {
"suggestion-box": "dist/cli.mjs"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && bun build src/cli.ts --target node --external @tursodatabase/database --external @modelcontextprotocol/sdk --external zod --external @huggingface/transformers --outfile dist/cli.mjs && node -e \"let f=require('fs');let c=f.readFileSync('dist/cli.mjs','utf8');f.writeFileSync('dist/cli.mjs',c.replace('#!/usr/bin/env bun','#!/usr/bin/env node'))\"",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@tursodatabase/database": "^0.4.4",
"@huggingface/transformers": "^3.4.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"bun-types": "latest",
"typescript": "^5.0.0"
},
"keywords": [
"mcp",
"ai",
"agent",
"feedback",
"feature-request",
"suggestion-box"
],
"license": "MIT"
}