-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "tock-vue-kit",
"version": "0.3.9",
"description": "Vue 3 client application for dialog with a Tock Bot REST API",
"type": "module",
"files": [
"dist"
],
"module": "./dist/tock-vue-kit.js",
"types": "./dist/index.d.ts",
"author": "Rodolphe Küffer <https://github.com/rkuffer>",
"homepage": "https://github.com/theopenconversationkit/tock-vue-kit",
"licence": "Apache-2.0",
"scripts": {
"dev": "vite build --mode development --watch",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force"
},
"dependencies": {
"linkify-html": "^4.1.3",
"linkifyjs": "^4.1.3",
"pinia": "^2.1.7"
},
"peerDependencies": {
"vue": "^3.4.15"
},
"devDependencies": {
"vite-plugin-static-copy": "^1.0.5",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.10",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/tsconfig": "^0.5.1",
"npm-run-all2": "^6.1.1",
"sass": "^1.71.1",
"typescript": "~5.3.0",
"vite": "^5.0.11",
"vite-plugin-dts": "3.7.3",
"vue": "^3.4.15",
"vue-tsc": "^1.8.27"
}
}