-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.03 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
{
"name": "vue-drag-scroller",
"version": "1.8.6",
"type": "module",
"license": "MIT",
"description": "A vue directive that helps you scroll in a more natural way.",
"module": "dist/vue-drag-scroller.es.js",
"main": "dist/vue-drag-scroller.cjs.js",
"types": "dist/declarations/index.d.ts",
"exports": {
".": {
"import": "./dist/vue-drag-scroller.es.js",
"require": "./dist/vue-drag-scroller.cjs.js",
"types": "./dist/declarations/index.d.ts"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*",
"./dist/declarations/index.d.ts": "./dist/declarations/index.d.ts"
},
"scripts": {
"dev": "vite --mode app",
"deploy": "gh-pages -d server",
"build-only": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview --mode app",
"build-lib": "vue-tsc --noEmit && vite build --mode lib && npm run define",
"build-app": "vue-tsc --noEmit && vite build --mode app",
"type-check": "vue-tsc --noEmit --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"define": "vue-tsc --declaration --emitDeclarationOnly --outDir dist/declarations"
},
"dependencies": {
"vue": "^3.3.11"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.19.3",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.0",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"gh-pages": "^6.1.1",
"npm-run-all2": "^6.1.1",
"prettier": "^3.0.3",
"typescript": "~5.3.0",
"vite": "^5.0.10",
"vue-tsc": "^1.8.25"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huynamboz/vue-drag-scroller.git"
},
"homepage": "https://huynamboz.github.io/vue-drag-scroller/",
"keywords": [
"vue3",
"vue3-directive",
"drag scroll",
"drag to scroll"
]
}