forked from headmandev/vue3-side-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.31 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
{
"name": "vue3-side-panel",
"version": "1.3.0",
"description": "Easy to use and flexible modal sidebar component for Vue3",
"main": "dist/vue3-side-panel.js",
"module": "dist/vue3-side-panel.esm.js",
"types": "dist/index.d.ts",
"style": "dist/vue3-side-panel.css",
"repository": {
"type": "git",
"url": "https://github.com/headmandev/vue3-side-panel.git"
},
"homepage": "https://vue3-side-panel.netlify.app/",
"files": [
"dist/*"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"lint": "run-s lint:eslint:fix lint:stylelint:fix lint:prettier:fix",
"lint:prettier": "prettier --check \"./src/**/*.(ts|vue|css|scss)\"",
"lint:prettier:fix": "prettier --write \"./src/**/*.(ts|vue|css|scss)\"",
"lint:eslint": "eslint --ext .ts,.vue ./src",
"lint:eslint:fix": "eslint --fix --ext .ts,.vue ./src",
"lint:stylelint": "stylelint ./src/**/*.{vue,css,scss}",
"lint:stylelint:fix": "stylelint ./src/**/*.{vue,css,scss} --fix",
"test": "run-p test:lint",
"test:lint": "run-p lint:eslint lint:stylelint lint:prettier"
},
"keywords": [
"vue3",
"modal",
"sidebar",
"panel",
"side-panel"
],
"author": "headmandev",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-eslint": "^8.0.1",
"@types/body-scroll-lock": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-md": "^1.0.19",
"eslint-plugin-vue": "^8.4.1",
"npm-run-all": "^4.1.5",
"postcss-html": "^1.3.0",
"prettier": "^2.5.1",
"rollup": "^2.63.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-typescript2": "^0.31.1",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.48.0",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-scss": "^4.1.0",
"typescript": "^4.5.4",
"vue": "^3.3.8"
},
"peerDependencies": {
"vue": "^3.3.8"
},
"dependencies": {
"body-scroll-lock": "^4.0.0-beta.0"
}
}