-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "vue-click",
"version": "2.1.8",
"private": false,
"description": "Vue plugin for advanced click directive.",
"author": "Zachary Cardoza",
"license": "MIT",
"keywords": [
"vue",
"click",
"throttle",
"debounce"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/nerdoza/vue-click/issues"
},
"homepage": "https://github.com/nerdoza/vue-click#readme",
"repository": {
"type": "git",
"url": "https://github.com/nerdoza/vue-click.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"build": "webpack --config webpack/prod.config.js",
"lint": "eslint .",
"dev": "webpack serve --config webpack/dev.config.js",
"start": "npm run dev",
"demo": "webpack --config webpack/demo.config.js"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.0.0",
"dts-bundle": "^0.7.3",
"eslint": "^8.28.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"vue": "^3.2.45",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
}
}