@spash/frontlib 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/dist/assets/style.css +1 -0
- package/dist/main.d.ts +285 -0
- package/dist/main.js +33350 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@spash/frontlib",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist"
|
|
7
|
+
],
|
|
8
|
+
"main": "./dist/main.js",
|
|
9
|
+
"types": "./dist/main.d.ts",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "vite",
|
|
12
|
+
"build": "vue-tsc && vite build",
|
|
13
|
+
"preview": "vite preview"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@vueuse/components": "^10.10.0",
|
|
17
|
+
"@vueuse/core": "^10.10.0",
|
|
18
|
+
"axios": "^1.7.2",
|
|
19
|
+
"floating-vue": "2.0.0-beta.24",
|
|
20
|
+
"hls.js": "^1.5.8",
|
|
21
|
+
"luxon": "^3.4.4",
|
|
22
|
+
"qrcode.vue": "^3.4.1",
|
|
23
|
+
"simple-keyboard": "^3.7.83",
|
|
24
|
+
"vue": "^3.4.27",
|
|
25
|
+
"vue-i18n": "^9.13.1",
|
|
26
|
+
"vue3-cookies": "^1.0.6"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@types/luxon": "^3.4.2",
|
|
30
|
+
"@types/node": "^20.12.12",
|
|
31
|
+
"@vitejs/plugin-vue": "^4.6.2",
|
|
32
|
+
"@vue/eslint-config-prettier": "^8.0.0",
|
|
33
|
+
"@vue/eslint-config-typescript": "^12.0.0",
|
|
34
|
+
"autoprefixer": "^10.4.19",
|
|
35
|
+
"eslint": "^8.57.0",
|
|
36
|
+
"eslint-plugin-vue": "^9.26.0",
|
|
37
|
+
"postcss": "^8.4.38",
|
|
38
|
+
"prettier": "^3.2.5",
|
|
39
|
+
"tailwindcss": "^3.4.3",
|
|
40
|
+
"typescript": "^5.4.5",
|
|
41
|
+
"vite": "^5.2.12",
|
|
42
|
+
"vite-plugin-dts": "^3.9.1",
|
|
43
|
+
"vue-tsc": "^1.8.27"
|
|
44
|
+
},
|
|
45
|
+
"description": "This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.",
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "git+https://github.com/ngtvexperience/FrontLib.git"
|
|
49
|
+
},
|
|
50
|
+
"author": "",
|
|
51
|
+
"license": "ISC",
|
|
52
|
+
"bugs": {
|
|
53
|
+
"url": "https://github.com/ngtvexperience/FrontLib/issues"
|
|
54
|
+
},
|
|
55
|
+
"homepage": "https://github.com/ngtvexperience/FrontLib#readme"
|
|
56
|
+
}
|