-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.89 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.89 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
{
"name": "@noticed/cli",
"version": "0.3.2",
"description": "CLI and MCP server for noticed — search your developer network, trace connections, find the shortest path to anyone through GitHub and LinkedIn.",
"keywords": [
"noticed",
"cli",
"mcp",
"mcp-server",
"model-context-protocol",
"developer-intelligence",
"github",
"linkedin",
"network-search"
],
"homepage": "https://github.com/noticedso/cli#readme",
"bugs": {
"url": "https://github.com/noticedso/cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noticedso/cli.git"
},
"license": "MIT",
"author": "noticed (https://noticed.so)",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"noticed": "bin/noticed.js"
},
"files": [
"dist",
"bin",
"skills",
".claude-plugin",
"server.json",
"mcp.json",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./mcp": {
"types": "./dist/mcp-server.d.ts",
"default": "./dist/mcp-server.js"
}
},
"mcpName": "io.github.noticedso/cli",
"scripts": {
"build": "tsc",
"check-types": "tsc --noEmit",
"dev": "tsc --watch",
"lint": "eslint src --max-warnings 0",
"test": "vitest run",
"prepublishOnly": "npm run check-types && npm run lint && npm run test && npm run build"
},
"dependencies": {
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"conf": "^13.1.0",
"open": "^10.1.0",
"ora": "^8.2.0",
"zod": "^3.25.11"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/node": "^22.15.30",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"typescript": "5.8.2",
"typescript-eslint": "^8.37.0",
"vitest": "^4.0.16"
}
}