-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 1.92 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
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
{
"name": "@videodb/chat-vue",
"description": "Chat component for Director",
"version": "0.0.26",
"author": "VideoDB",
"license": "Apache-2.0",
"private": false,
"homepage": "https://videodb.io",
"repository": {
"type": "git",
"url": "https://github.com/video-db/videodb-chat.git"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"style": "dist/style.css",
"types": "types/index.d.ts",
"files": [
"dist",
"types",
"README.md"
],
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"typings": "types/index.d.ts",
"scripts": {
"dev-server": "vite",
"dev-types": "vue-tsc --noEmit -p tsconfig.app.json --watch",
"build": "npm run build-lib && npm run build-types",
"build-lib": "vite build",
"build-types": "vue-tsc --emitDeclarationOnly --declaration -p tsconfig.app.json",
"lint": "eslint 'src/**/*.{ts,vue}'",
"test": "vitest",
"test-ci": "vitest --run",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"vue": "^3.0.4"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/node": "20.8.10",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/compiler-dom": "^3.3.8",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.53.0",
"jsdom": "^22.1.0",
"lint-staged": "^15.0.2",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"run-p": "^0.0.0",
"sass": "^1.77.8",
"tailwindcss": "^3.4.10",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6",
"vue": "^3.4.38",
"vue-tsc": "^2.0.29"
},
"dependencies": {
"@videodb/player-vue": "~0.0.4",
"dayjs": "^1.11.13",
"katex": "^0.16.11",
"marked": "^4.2.5",
"marked-katex-extension": "^5.1.2",
"socket.io-client": "^4.7.5",
"swiper": "^11.1.10",
"uuid": "^10.0.0",
"vue3-popper": "^1.5.0"
}
}