-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
94 lines (94 loc) · 2.44 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
{
"name": "vue-float-menu",
"version": "1.9.1",
"description": "smart floating menu for Vue 3",
"license": "MIT",
"type": "module",
"keywords": [
"menu",
"float-menu",
"vue-menu"
],
"repository": {
"type": "git",
"url": "https://github.com/prabhuignoto/vue-float-menu"
},
"author": {
"name": "Prabhu Murthy",
"url": "https://www.prabhumurthy.com",
"email": "[email protected]"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"rollup": "rimraf ./dist && rollup -c",
"lint": "eslint src/**/*.vue",
"lint:css": "stylelint src/**/*.scss --custom-syntax postcss-scss",
"lint:all": "pnpm lint && pnpm lint:css",
"prepare": "husky install",
"format": "prettier --write \"src/**/*.vue\" \"src/**/*.scss\"",
"clean": "pnpm format && pnpm lint:all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.scss": [
"npx stylelint src/**/*.scss --fix",
"git add"
],
"src/**/*.vue": [
"eslint src/**/*.vue --fix",
"git add"
]
},
"dependencies": {
"focus-visible": "^5.2.0"
},
"devDependencies": {
"@rollup/plugin-beep": "^1.0.2",
"@rollup/plugin-buble": "^1.0.2",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-sucrase": "^5.0.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.3.4",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^9.15.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.26",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^3.0.0",
"rollup": "^3.26.3",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.63.6",
"stylelint": "^15.10.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^34.0.0",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vite": "^4.4.4",
"vue": "^3.3.4",
"vue-float-menu": "^1.9.1"
},
"peerDependencies": {
"@vue/compiler-sfc": "^3.0.4",
"vue": "^3.0.4"
},
"main": "dist/vue-float-menu.js",
"module": "dist/vue-float-menu.js",
"umd": "dist/vue-float-menu.umd.js",
"files": [
"dist"
]
}