-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 934 Bytes
/
package.json
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
{
"name": "excel-addin-vue",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite serve",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"validate": "office-toolbox validate -m manifest.xml",
"start": "office-addin-debugging start manifest.xml desktop",
"start-with-build": "npm run build && office-addin-debugging start manifest.xml desktop",
"test": "vitest"
},
"dependencies": {
"@microsoft/recognizers-text-suite": "^1.3.0",
"@types/custom-functions-runtime": "^1.6.4",
"@types/office-js-preview": "^1.0.297",
"custom-functions-metadata": "^1.2.7",
"typescript": "^4.6.3",
"vue": "^3.2.25"
},
"devDependencies": {
"@types/node": "^17.0.25",
"@vitejs/plugin-vue": "^2.3.1",
"office-addin-debugging": "^4.3.9",
"office-toolbox": "^0.1.1",
"vite": "^2.9.5",
"vitest": "^0.9.3",
"vue-tsc": "^0.34.7"
}
}