-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "@mr-scroll/vue",
"description": "The best custom scroll for the web. This is the vue wrapper.",
"version": "1.2.0",
"main": "dist/mr-scroll.umd.js",
"module": "dist/mr-scroll.common.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "vue-cli-service lint",
"build": "vue-cli-service build --target lib --name mr-scroll src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"custom",
"scroll",
"scrollbar",
"vue",
"component"
],
"author": "Mohammad Rahhal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrahhal/mr-scroll"
},
"bugs": {
"url": "https://github.com/mrahhal/mr-scroll/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"peerDependencies": {
"@mr-scroll/core": "^1.0.0",
"vue": ">=3.0.0",
"vue-class-component": ">=8.0.0-0",
"vue-property-decorator": ">=10.0.0-0"
},
"devDependencies": {
"@mr-scroll/core": "file:../core",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.11",
"typescript": "~4.1.5",
"vue": "^3.0.0",
"vue-class-component": "^8.0.0-0",
"vue-property-decorator": "^10.0.0-0"
}
}