-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
44
45
46
47
48
49
{
"name": "tock-vue-kit",
"version": "1.0.1",
"description": "Vue 3 client application for dialog with a Tock Bot REST API",
"type": "module",
"files": [
"dist"
],
"main": "./dist/tock-vue-kit.js",
"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",
"license": "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": {
"dompurify": "^3.2.4",
"highlight.js": "^11.11.1",
"katex": "^0.16.21",
"marked": "^15.0.7",
"marked-highlight": "^2.2.1",
"pinia": "^2.2.0",
"url-sanitizer": "^2.0.7"
},
"peerDependencies": {
"vue": "^3.4.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/katex": "^0.16.7",
"@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.4.5",
"vite": "^5.0.11",
"vite-plugin-dts": "3.7.3",
"vite-plugin-static-copy": "^1.0.5",
"vue": "^3.4.0",
"vue-tsc": "^1.8.27"
}
}