forked from wan2land/vue-scroll-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.37 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
{
"name": "vue-scroll-picker",
"version": "1.1.0",
"description": "iOS Style Scroll Picker Component for Vue 3. Support All Gestures of Mouse(also MouseWheel) and Touch.",
"author": "Changwan Jun",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/wan2land/vue-scroll-picker.git"
},
"scripts": {
"prepack": "npm run build",
"test": "npm run test:lint",
"test:lint": "eslint 'src/**/*.ts'",
"dev:example": "vite serve example",
"build": "npm run build:production && npm run build:example",
"build:production": "vite build && tsc -p tsconfig.build.json",
"build:example": "vite build example && cp example/CNAME example-dist/",
"deploy:example": "npm run build:example && gh-pages -d example-dist"
},
"main": "lib/vue-scroll-picker.umd.js",
"module": "lib/vue-scroll-picker.es.js",
"types": "lib/index.d.ts",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@types/node": "14.17.34",
"@types/simple-icons": "5.8.0",
"@vitejs/plugin-vue": "1.9.4",
"@vue/compiler-sfc": "3.2.22",
"eslint": "7.32.0",
"eslint-config-stable": "0.9.0",
"eslint-plugin-vue": "7.20.0",
"gh-pages": "3.2.3",
"husky": "7.0.4",
"simple-icons": "5.23.0",
"typescript": "4.5.2",
"vite": "2.6.14",
"vue": "3.2.22"
}
}