@vuebro/runtime 0.3.3
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/LICENSE +661 -0
- package/README.md +1 -0
- package/dist/.vite/manifest.json +62 -0
- package/dist/assets/MultiView-Dsld-pl0.js +1 -0
- package/dist/assets/NotFoundView-BuLyKdgl.js +1 -0
- package/dist/assets/SingleView-yylbPPzP.js +1 -0
- package/dist/assets/compiler-sfc-BpcYqFg-.js +183 -0
- package/dist/assets/index-BuxVArEL.js +413 -0
- package/dist/assets/index-vGiKZPT9.css +1 -0
- package/dist/assets/sucrase-DTaNgZ3p.js +135 -0
- package/dist/assets/vue-router.esm-browser.prod-4.5.1.js +6 -0
- package/dist/assets/vue.esm-browser.prod-3.5.14.js +12 -0
- package/dist/fonts.json +1 -0
- package/dist/index.html +17 -0
- package/dist/robots.txt +2 -0
- package/eslint.config.ts +43 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vuebro/runtime",
|
|
3
|
+
"version": "0.3.3",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"lint": "eslint .",
|
|
7
|
+
"lint:fix": "eslint . --fix",
|
|
8
|
+
"build": "vue-tsc && vite build"
|
|
9
|
+
},
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@iconify/vue": "^5.0.0",
|
|
12
|
+
"@unhead/vue": "^2.0.9",
|
|
13
|
+
"@unocss/core": "^66.1.2",
|
|
14
|
+
"@unocss/preset-attributify": "^66.1.2",
|
|
15
|
+
"@unocss/preset-icons": "^66.1.2",
|
|
16
|
+
"@unocss/preset-tagify": "^66.1.2",
|
|
17
|
+
"@unocss/preset-typography": "^66.1.2",
|
|
18
|
+
"@unocss/preset-web-fonts": "^66.1.2",
|
|
19
|
+
"@unocss/preset-wind4": "^66.1.2",
|
|
20
|
+
"@unocss/runtime": "^66.1.2",
|
|
21
|
+
"@vuebro/sfc-loader": "^1.2.10",
|
|
22
|
+
"@vuebro/shared": "^0.5.20",
|
|
23
|
+
"@vueuse/core": "^13.2.0",
|
|
24
|
+
"globals": "^16.1.0",
|
|
25
|
+
"uuid": "^11.1.0",
|
|
26
|
+
"vue": "^3.5.14",
|
|
27
|
+
"vue-router": "^4.5.1"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
31
|
+
"@eslint/js": "^9.27.0",
|
|
32
|
+
"@types/node": "^22.15.21",
|
|
33
|
+
"@vitejs/plugin-vue": "^5.2.4",
|
|
34
|
+
"eslint-config-prettier": "^10.1.5",
|
|
35
|
+
"eslint-import-resolver-typescript": "^4.3.5",
|
|
36
|
+
"eslint-plugin-import-x": "^4.12.2",
|
|
37
|
+
"eslint-plugin-perfectionist": "^4.13.0",
|
|
38
|
+
"eslint-plugin-prettier": "^5.4.0",
|
|
39
|
+
"eslint-plugin-vue": "^10.1.0",
|
|
40
|
+
"jiti": "^2.4.2",
|
|
41
|
+
"prettier": "^3.5.3",
|
|
42
|
+
"typescript-eslint": "^8.32.1",
|
|
43
|
+
"vite": "^6.3.5",
|
|
44
|
+
"vite-plugin-static-copy": "^3.0.0",
|
|
45
|
+
"vue-eslint-parser": "^10.1.3",
|
|
46
|
+
"vue-tsc": "^2.2.10"
|
|
47
|
+
},
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "git+https://github.com/vuebro/runtime.git"
|
|
51
|
+
},
|
|
52
|
+
"keywords": [
|
|
53
|
+
"vuebro",
|
|
54
|
+
"runtime"
|
|
55
|
+
],
|
|
56
|
+
"author": "jbruwes",
|
|
57
|
+
"license": "AGPL",
|
|
58
|
+
"bugs": {
|
|
59
|
+
"url": "https://github.com/vuebro/runtime/issues"
|
|
60
|
+
},
|
|
61
|
+
"homepage": "https://github.com/vuebro/runtime#readme",
|
|
62
|
+
"description": "@vuebro/runtime"
|
|
63
|
+
}
|