-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.81 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
64
65
66
67
68
69
70
71
{
"name": "v-date-picker",
"version": "0.3.0",
"keywords": [
"vue",
"date",
"calendar",
"datepicker",
"date-picker",
"vue3"
],
"homepage": "https://github.com/ediaz2/v-date-picker#readme",
"bugs": {
"url": "https://github.com/ediaz2/v-date-picker/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ediaz2/v-date-picker.git"
},
"license": "MIT",
"author": "Eduardo Diaz",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "run-p lint:types build:lib build:types",
"build:lib": "vite build",
"build:types": "vue-tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"dev": "vite",
"lint:eslint": "eslint . --ext .vue,.ts --fix --ignore-path .gitignore",
"lint:types": "vue-tsc --build --force",
"preview": "vite preview",
"prepublish": "npm run build"
},
"devDependencies": {
"@internationalized/date": "3.5.1",
"@rushstack/eslint-patch": "1.7.0",
"@tsconfig/node18": "18.2.2",
"@types/node": "20.11.5",
"@vitejs/plugin-vue": "5.0.3",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "12.0.0",
"@vue/test-utils": "2.4.3",
"@vue/tsconfig": "0.5.1",
"eslint": "8.56.0",
"eslint-plugin-vue": "9.20.1",
"npm-run-all2": "6.1.1",
"prettier": "3.2.4",
"radix-vue": "1.3.2",
"tsc-alias": "1.8.8",
"typescript": "5.3.3",
"vite": "5.0.12",
"vue": "3.4.15",
"vue-tsc": "1.8.27"
},
"peerDependencies": {
"@internationalized/date": ">=3.5.0",
"vue": ">=3.3.0"
}
}