-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.31 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
{
"name": "calendarify",
"private": false,
"version": "2.0.4",
"type": "module",
"files": [
"dist/*.css",
"dist/*.js",
"dist/*.ts"
],
"main": "./dist/calendarify.umd.cjs",
"module": "./dist/calendarify.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/calendarify.js",
"require": "./dist/calendarify.umd.cjs"
},
"./dist/calendarify.min.css": {
"import": "./dist/calendarify.min.css"
}
},
"style": "./dist/calendarify.min.css",
"browserslist": [
"last 2 versions"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "tsc",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^18.13.0",
"autoprefixer": "^10.4.13",
"sass": "^1.58.0",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vite-plugin-dts": "^1.7.2"
},
"dependencies": {
"@floating-ui/dom": "^1.2.1",
"moment": "^2.29.4"
},
"repository": {
"type": "git",
"url": "https://github.com/mohamadadithya/calendarify"
},
"keywords": [
"datepicker",
"calendar",
"calendarify"
],
"author": "Mohamad Adithya",
"bugs": {
"url": "https://github.com/mohamadadithya/calendarify/issues"
},
"homepage": "https://github.com/mohamadadithya/calendarify#readme",
"license": "MIT"
}