-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.78 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
{
"name": "vue3-ytframe",
"version": "0.4.0",
"author": "Kiran Parajuli <[email protected]>",
"description": "A Vue3 YouTube Iframe API Wrapper Component",
"type": "module",
"keywords": [
"vue",
"vue3",
"youtube",
"iframe",
"embed",
"youtube-iframe-api"
],
"files": [
"dist"
],
"main": "dist/ytframe.umd.js",
"browser": "dist/ytframe.umd.js",
"unpkg": "dist/ytframe.umd.js",
"jsdelivr": "dist/ytframe.umd.js",
"module": "dist/ytframe.es.js",
"exports": {
".": {
"import": "./dist/ytframe.es.js",
"require": "./dist/ytframe.umd.js"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/kiranparajuli589/vue3-ytframe"
},
"bugs": {
"url": "https://github.com/kiranparajuli589/vue3-ytframe/issues"
},
"homepage": "https://kiranparajuli589.github.io/vue3-ytframe/#/",
"scripts": {
"dev": "vite",
"build-lib": "vite build --mode lib",
"build-docs": "vite build --mode docs",
"build": "pnpm build-lib && pnpm build-docs",
"preview": "vite preview",
"lint": "eslint src lib --ext .js,.vue",
"lint:fix": "eslint src lib --fix --ext .js,.vue",
"stylelint": "stylelint src lib --config stylelint.conf.cjs",
"stylelint:fix": "stylelint src lib --config stylelint.conf.cjs --fix"
},
"dependencies": {
"highlight.js": "^11.9.0",
"vue": "^3.3.13"
},
"devDependencies": {
"@mdi/font": "^7.3.67",
"@vitejs/plugin-vue": "^4.5.2",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.19.2",
"pinia": "^2.1.7",
"postcss": "^8.4.32",
"postcss-html": "^1.5.0",
"sass": "^1.69.5",
"stylelint": "^15.11.0",
"stylelint-config-recommended-scss": "^9.0.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^31.0.0",
"vite": "^4.5.1",
"vue-router": "^4.2.5"
},
"license": "GPL-3.0"
}