-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.32 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
{
"name": "time-dial",
"version": "0.1.2",
"type": "module",
"description": "A framework-agnostic time selection Web Component with circular dial interface",
"main": "./dist/time-dial.js",
"module": "./dist/time-dial.js",
"exports": {
".": "./dist/time-dial.js",
"./themes.css": "./dist/time-dial-themes.css"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"keywords": [
"web-component",
"time-picker",
"time-selection",
"dial",
"circular-dial",
"custom-element",
"accessibility",
"aria"
],
"author": "Mario Winterer <mario.winterer@gmail.com>",
"contributors": [
"Mario Winterer",
"GitHub Copilot"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/winterer/time-dial"
},
"bugs": {
"url": "https://github.com/winterer/time-dial/issues"
},
"homepage": "https://github.com/winterer/time-dial#readme",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "vite build",
"build:watch": "vite build --watch",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"terser": "^5.46.0",
"vite": "^7.3.1"
}
}