-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.22 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.22 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ntk",
"version": "0.1.2",
"description": "NeedToKnow — Multi-agent framework based on information density routing. Know less. Do more.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./errors": {
"types": "./dist/core/errors.d.ts",
"import": "./dist/core/errors.js"
},
"./pipeline": {
"types": "./dist/pipeline/pipeline.d.ts",
"import": "./dist/pipeline/pipeline.js"
}
},
"bin": {
"ntk": "./bin/ntk.js"
},
"files": [
"dist/",
"bin/",
"SKILL.md",
"README.md",
"README_EN.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"verify": "npm run typecheck && npm run lint && npm run test && npm run docs",
"dev": "tsx src/cli.ts interactive",
"start": "tsx src/cli.ts",
"serve": "tsx src/cli.ts serve",
"mcp": "tsx src/mcp/server.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:run": "tsx src/cli.ts test",
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"prepublishOnly": "npm run typecheck && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/kobolingfeng/ntk.git"
},
"homepage": "https://github.com/kobolingfeng/ntk#readme",
"bugs": {
"url": "https://github.com/kobolingfeng/ntk/issues"
},
"keywords": [
"multi-agent",
"ai",
"llm",
"agent-framework",
"information-density",
"need-to-know",
"token-efficient"
],
"author": "kobolingfeng",
"license": "AGPL-3.0-only",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"chalk": "^5.4.1",
"dotenv": "^16.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/node": "^22.14.0",
"@vitest/coverage-v8": "^4.1.2",
"tsx": "^4.19.3",
"typedoc": "^0.28.18",
"typescript": "^5.8.2",
"vitest": "^4.1.2"
}
}