-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.71 KB
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
{
"name": "birthdaypicker",
"version": "0.2.2",
"description": "i18n birthday picker with a variety of setting options",
"author": "wolfgang jungmayer",
"license": "MIT",
"type": "module",
"browser": "dist/birthdaypicker.umd.js",
"module": "./dist/birthdaypicker.js",
"exports": {
"import": "./dist/birthdaypicker.js",
"require": "./dist/birthdaypicker.umd.js"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"demo": "vite build --config vite.config.pages.js && mv ./demo/demo.html ./demo/index.html",
"predemo-preview": "pnpm run demo",
"demo-preview": "vite preview --outDir './demo'",
"preview": "vite preview",
"lint": "eslint 'src/**/*.js'",
"format": "prettier --write 'src/**/*.js'",
"test": "vitest",
"coverage": "vitest --coverage"
},
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"LICENSE",
"README.md",
"dist",
"index.js"
],
"keywords": [
"birthdaypicker",
"datepicker",
"birthday picker",
"date picker",
"front-end",
"frontend"
],
"repository": {
"type": "git",
"url": "https://github.com/lemon3/birthdaypicker.git"
},
"homepage": "https://lemon3.github.io/birthdaypicker",
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/preset-env": "^7.26.9",
"@rollup/plugin-terser": "^0.4.4",
"@vitest/coverage-v8": "^3.1.1",
"eslint": "^9.24.0",
"globals": "^16.0.0",
"jsdom": "^26.1.0",
"prettier": "^3.5.3",
"vite": "^6.2.6",
"vite-plugin-banner": "^0.8.0",
"vitest": "^3.1.1"
}
}