forked from Pikaday/Pikaday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.26 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
{
"name": "@handsontable/pikaday",
"version": "1.0.0",
"description": "A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS",
"keywords": [
"datepicker",
"calendar",
"date"
],
"homepage": "https://github.com/handsontable/pikaday",
"bugs": "https://github.com/handsontable/pikaday/issues",
"license": "(0BSD OR MIT)",
"main": "pikaday",
"module": "./pikaday.mjs",
"typings": "./pikaday.d.ts",
"sideEffects": [
"**/*.css"
],
"exports": {
".": {
"types": "./pikaday.d.ts",
"import": "./pikaday.mjs",
"require": "./pikaday.cjs"
},
"./css/pikaday.css": "./css/pikaday.css",
"./css/site.css": "./css/site.css",
"./css/theme.css": "./css/theme.css",
"./css/triangle.css": "./css/triangle.css",
"./plugins/pikaday.jquery.js": "./plugins/pikaday.jquery.js",
"./scss/pikaday.scss": "./scss/pikaday.scss"
},
"repository": {
"type": "git",
"url": "https://github.com/handsontable/pikaday.git"
},
"scripts": {
"test": "jest",
"test.watch": "jest --watch",
"build": "vite build"
},
"devDependencies": {
"@babel/preset-env": "^7.23.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"moment": "^2.29.4",
"vite": "^5.0.6"
}
}