-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 967 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 967 Bytes
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
{
"name": "outlook-cli-skill",
"version": "0.1.0",
"description": "Turn Outlook email into AI skills — no MCP server required. Lightweight OAuth CLI + skill files for any AI agent.",
"type": "module",
"bin": {
"outlook-auth": "./cli/dist/index.js",
"outlook-cli-skill": "./bin/install-skill.js"
},
"scripts": {
"build": "cd cli && npx tsc && chmod +x dist/index.js",
"prepublishOnly": "npm run build"
},
"files": [
"cli/dist/",
"skills/",
"bin/",
"LICENSE",
"README.md",
"AGENTS.md"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"outlook",
"email",
"microsoft-graph",
"ai-skill",
"cli",
"oauth",
"pkce",
"claude",
"cursor",
"codex"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/w21180239/outlook-cli-skill.git"
},
"devDependencies": {
"typescript": "^5.7.0",
"@types/node": "^22.0.0"
}
}