-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.08 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": "holo-vue",
"version": "0.2.1",
"homepage": "https://holo.ovi.moe/",
"description": "Holo is a Vue 3 UI library inspired by over-the-top sci-fi eyecandy (yes, really)",
"author": {
"name": "Ovi",
"email": "[email protected]"
},
"files": [
"dist"
],
"main": "./dist/holo-vue.umd.js",
"module": "./dist/holo-vue.es.js",
"typings": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/holo-vue.es.js",
"require": "./dist/holo-vue.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"unpkg": "dist/holo-vue.umd.js",
"private": false,
"license": "MIT",
"bugs": "",
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"holo",
"vue",
"vue3",
"vuejs",
"typescript",
"vue-components",
"ui"
],
"scripts": {
"dev": "vite",
"dev:host": "vite --host",
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly --skipLibCheck",
"lint:eslint": "eslint src/**/*.{ts,vue}",
"lint:prettier": "prettier -w -u src/**/*.{ts,vue}",
"lint:stylelint": "stylelint **/*.{css,vue}"
},
"devDependencies": {
"@types/body-scroll-lock": "^3.1.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"@vitejs/plugin-vue": "^2.1.0",
"autoprefixer": "^10.4.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier-vue": "^3.1.0",
"eslint-plugin-vue": "^8.4.1",
"husky": "4",
"lint-staged": "^10.5.4",
"postcss-input-style": "^1.0.0",
"prettier": "^2.5.1",
"stylelint": "^14.3.0",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-standard": "^24.0.0",
"typescript": "^4.5.5",
"vite": "^2.7.13",
"vue-tsc": "^0.31.2"
},
"dependencies": {
"@vueuse/core": "^5.0.3",
"@vueuse/integrations": "^5.0.3",
"body-scroll-lock": "^3.1.5",
"colord": "^2.9.2",
"holocore": "^0.1.2",
"vue": "^3.0.5"
}
}