-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
47 lines (47 loc) · 1.67 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
{
"name": "vue-scroll-picker",
"version": "1.2.3",
"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 && npm run test:build",
"test:lint": "eslint 'src/**/*.ts'",
"test:build": "npm run build:production && node scripts/test-build.mjs",
"dev:example": "vite serve example --host 0.0.0.0",
"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.mjs",
"types": "lib/index.d.ts",
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "13.2.0",
"@types/node": "18.19.64",
"@types/simple-icons": "5.21.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/compiler-sfc": "3.5.12",
"@vue/eslint-config-typescript": "11.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "9.30.0",
"gh-pages": "3.2.3",
"husky": "7.0.4",
"prettier": "2.8.8",
"simple-icons": "7.21.0",
"typescript": "^4.9.5",
"vite": "^4.5.2",
"vue": "3.5.12"
}
}