forked from jackdark425/aigroup-aliyunoss-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 3.64 KB
/
package.json
File metadata and controls
151 lines (151 loc) · 3.64 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "aigroup-aliyunoss-mcp",
"version": "1.1.0",
"description": "阿里云OSS MCP服务器 - 为阿里云对象存储服务提供的MCP (Model Context Protocol) 服务器",
"type": "module",
"main": "build/index.js",
"bin": {
"aigroup-aliyunoss-mcp": "build/index.js"
},
"files": [
"build/**/*",
"README.md",
"LICENSE",
"ARCHITECTURE.md",
"DEPLOYMENT.md"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"start": "node build/index.js",
"dev": "tsc && node build/index.js --stdio",
"health": "node build/index.js --health",
"validate-config": "node build/index.js --validate-config",
"clean": "rimraf build",
"prebuild": "npm run clean",
"prepack": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"aliyun",
"oss",
"object-storage",
"cloud-storage",
"typescript",
"nodejs"
],
"author": "aigroup-aliyunoss-mcp team",
"license": "MIT",
"homepage": "https://github.com/jackdark425/aigroup-aliyunoss-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jackdark425/aigroup-aliyunoss-mcp.git"
},
"bugs": {
"url": "https://github.com/jackdark425/aigroup-aliyunoss-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"ali-oss": "^6.18.0",
"dotenv": "^17.2.1",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/ali-oss": "^6.16.11",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/*.ts",
"**/?(*.)+(spec|test).ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts",
"!src/**/__tests__/**",
"!src/**/*.test.ts",
"!src/**/*.spec.ts"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
]
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"@typescript-eslint/recommended",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/prefer-const": "error",
"@typescript-eslint/no-var-requires": "error"
},
"env": {
"node": true,
"es2022": true
}
},
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2,
"useTabs": false
}
}