-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"name": "@yosider/cosense-mcp-server",
"version": "0.4.0",
"description": "A MCP server for cosense",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/yosider/cosense-mcp-server"
},
"type": "module",
"packageManager": "pnpm@10.25.0",
"bin": {
"cosense-mcp-server": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc",
"prepare": "pnpm run build",
"watch": "tsc --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"start": "tsx src/index.ts",
"start:dev": "tsx watch src/index.ts",
"inspect": "pnpx @modelcontextprotocol/inspector -- tsx src/index.ts"
},
"dependencies": {
"@core/unknownutil": "npm:@jsr/core__unknownutil@^4.4.0-pre.0",
"@cosense/std": "npm:@jsr/cosense__std@^0.30.0",
"@modelcontextprotocol/sdk": "^1.17.1",
"dotenv": "^17.2.1",
"option-t": "^53.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@cosense/types": "npm:@jsr/cosense__types@^0.11.0",
"@eslint/js": "^9.32.0",
"@types/node": "^24.2.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
}
}