-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.7 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
{
"name": "tinker-office",
"version": "0.1.0",
"description": "Office document editor plugin for TINKER",
"repository": {
"type": "git",
"url": "git+https://github.com/liriliri/tinker-office.git"
},
"homepage": "https://github.com/liriliri/tinker-office",
"bugs": {
"url": "https://github.com/liriliri/tinker-office/issues"
},
"files": [
"dist/",
"icon.png"
],
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"format": "prettier \"src/**/*.{ts,tsx,scss}\" \"*.{html,json,js,ts}\" --write"
},
"keywords": [
"tinker",
"office",
"onlyoffice",
"docx",
"xlsx",
"pptx"
],
"tinker": {
"name": "Office",
"description": "Open and edit Word, Excel, and PowerPoint documents",
"main": "dist/index.html",
"icon": "icon.png",
"locales": {
"zh-CN": {
"name": "Office",
"description": "打开并编辑 Word、Excel、PowerPoint 文档"
}
},
"mcp": {
"tools": {
"open_file": {
"description": "Open a local office document in the editor. Updates the plugin UI.",
"inputSchema": {
"type": "object",
"properties": {
"path": {
"type": "string",
"minLength": 1,
"description": "Absolute path to a document (docx, xlsx, pptx, pdf, etc.)"
}
},
"required": [
"path"
]
}
},
"new_document": {
"description": "Create a new blank document in the editor.",
"inputSchema": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"docx",
"xlsx",
"pptx"
],
"description": "Document type to create"
}
},
"required": [
"type"
]
}
}
}
}
},
"devDependencies": {
"@radix-ui/react-scroll-area": "^1.2.18",
"@radix-ui/react-toast": "^1.2.23",
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "^24.0.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.7.0",
"i18next": "^25.8.4",
"licia": "^1.48.0",
"lucide-react": "^0.563.0",
"mobx": "^6.15.0",
"mobx-react-lite": "^4.1.1",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-i18next": "^16.5.4",
"sass": "^1.89.2",
"tailwindcss": "^4.1.17",
"tinker-api-types": "^0.4.0",
"typescript": "^5.8.3",
"vite": "^5.4.19"
}
}