-
Notifications
You must be signed in to change notification settings - Fork 0
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": "@kind-ling/twig",
"mcpName": "io.github.kind-ling/twig",
"version": "0.4.1",
"description": "MCP tool description optimizer. Agents choose you or they don't. Twig makes them choose you.",
"author": "Permanent Upper Class",
"license": "MIT",
"homepage": "https://github.com/Kind-ling/twig",
"repository": {
"type": "git",
"url": "https://github.com/Kind-ling/twig.git"
},
"type": "module",
"bin": {
"twig": "./dist/src/cli.js"
},
"main": "./dist/src/analyzer/scorer.js",
"exports": {
".": "./dist/src/analyzer/scorer.js",
"./scorer": "./dist/src/analyzer/scorer.js",
"./optimizer": "./dist/src/optimizer/generator.js",
"./fetcher": "./dist/src/analyzer/fetcher.js"
},
"files": [
"dist/",
"data/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node scripts/fix-shebang.js",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"serve": "node dist/src/server/index.js",
"serve:dev": "tsc --watch & node --watch dist/src/server/index.js",
"prepublishOnly": "npm run typecheck && npm test && npm run build"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/supertest": "6.0.2",
"supertest": "7.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vitest": "^2.1.0"
},
"dependencies": {
"@types/express": "5.0.1",
"express": "4.21.2"
}
}