-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
102 lines (102 loc) · 3.25 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "v-clappr",
"description": "Vue.js wrapper for Clappr",
"version": "3.4.0",
"main": "./dist/v-clappr.js",
"module": "./dist/v-clappr.js",
"umd": "./dist/v-clappr.umd.cjs",
"unpkg": "./dist/v-clappr.cjs",
"jsdelivr": "./dist/v-clappr.cjs",
"cdn": "./dist/v-clappr.min.js",
"exports": {
".": {
"import": "./dist/v-clappr.js",
"require": "./dist/v-clappr.umd.cjs"
}
},
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly && prettier --write dist/*{cjs,js,ts}",
"test": "echo 'test!'",
"prepare": "is-ci || husky",
"lint": "bun run lint:prettier && bun run lint:eslint && bun run lint:css",
"lintfix": "bun run lint:prettier:fix && bun run lint:eslint:fix && bun run lint:css:fix",
"lint:js": "bun run lint:eslint && bun run lint:prettier",
"lint:eslint": "eslint \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\"",
"lint:eslint:fix": "eslint --fix \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\"",
"lint:prettier": "prettier --check \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\"",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\"",
"lint:css": "stylelint \"{,!(node_modules|dist)/**/}*.{css,scss,vue}\"",
"lint:css:fix": "stylelint --fix \"{,!(node_modules|dist)/**/}*.{css,scss,vue}\"",
"release": "shipjs prepare",
"release:auto": "shipjs prepare --yes",
"release:dry": "shipjs prepare --dry-run"
},
"peerDependencies": {
"@clappr/core": "0.4.27",
"@clappr/hlsjs-playback": "1.6.0",
"@clappr/plugins": "0.7.1",
"vue": "^3.5.6"
},
"dependencies": {
"@clappr/core": "0.4.27",
"@clappr/hlsjs-playback": "1.6.0",
"@clappr/plugins": "0.7.1",
"vue": "^3.5.6"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vinayakkulkarni/prettier-config-vue": "^1.0.0",
"@vitejs/plugin-vue": "^5.1.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.4.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-vue": "^9.29.0",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"sass": "^1.79.5",
"shipjs": "^0.26.4",
"stylelint": "^16.10.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-prettier": "^5.0.2",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vue-tsc": "^2.1.6"
},
"keywords": [
"Vue.js",
"V-Clappr",
"Clappr",
"Vue Component",
"Vue-Clappr"
],
"author": {
"name": "Vinayak Kulkarni",
"email": "[email protected]",
"url": "https://vinayakkulkarni.dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vinayakkulkarni/v-clappr.git"
},
"private": false,
"sideEffects": false,
"bugs": {
"url": "https://github.com/vinayakkulkarni/v-clappr/issues"
},
"homepage": "https://github.com/vinayakkulkarni/v-clappr#readme"
}