-
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.23 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.23 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": "task2tool",
"version": "0.3.0",
"description": "Find and compose complementary local AI-agent skills, prompts, MCP servers, and catalogs.",
"type": "module",
"bin": {
"task2tool": "dist/src/cli.js"
},
"files": [
"dist/src",
"assets/banner.svg",
"examples",
"schema",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"prepare": "npm run build",
"pretest": "npm run clean && npm run build",
"test": "node --test --test-reporter=spec dist/test/*.test.js",
"check": "npm run clean && npm run build && npm test"
},
"keywords": [
"ai-agents",
"mcp",
"prompts",
"skills",
"cli",
"local-first",
"tool-discovery"
],
"author": "mockingbird777",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mockingbird777/task2tool.git"
},
"bugs": {
"url": "https://github.com/mockingbird777/task2tool/issues"
},
"homepage": "https://mockingbird777.github.io/task2tool/",
"devDependencies": {
"@types/node": "^22.15.0",
"typescript": "^5.8.3"
}
}