-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.28 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.28 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
{
"name": "@pjmdebruin/learncli",
"version": "1.0.1",
"description": "A cross-platform command-line app to interact with Microsoft Learn through Learn MCP Server",
"publishConfig": {
"access": "public"
},
"keywords": [
"cli",
"learn",
"command-line"
],
"homepage": "https://github.com/pdebruin/learncli#readme",
"bugs": {
"url": "https://github.com/pdebruin/learncli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pdebruin/learncli.git"
},
"license": "ISC",
"author": "Pieter de Bruin",
"type": "commonjs",
"main": "dist/index.js",
"bin": {
"learncli": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "npm run build && node dist/index.js",
"test": "npm run build && jest",
"prepublishOnly": "npm run build"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.test.ts"
]
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.0.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3"
}
}