-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"name": "@node-projects/pickr-webcomponent",
"version": "1.1.0",
"license": "MIT",
"author": "Simon Reinisch <trash@reinisch.io>",
"description": "Flat, simple, hackable color picker web components.",
"keywords": [
"ux",
"pickr",
"color",
"color-picker",
"web-component",
"custom-element"
],
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./classic": "./lib/js/pickr-classic.js",
"./monolith": "./lib/js/pickr-monolith.js",
"./nano": "./lib/js/pickr-nano.js",
"./element": "./lib/js/pickr-element.js"
},
"scripts": {
"start": "web-dev-server --open",
"bundle": "node _esbuild.js",
"prepublishOnly": "npm run bundle"
},
"homepage": "https://github.com/node-projects/pickr-webcomponent#readme",
"repository": {
"type": "git",
"url": "https://github.com/node-projects/pickr-webcomponent.git"
},
"bugs": {
"url": "https://github.com/node-projects/pickr-webcomponent/issues"
},
"files": [
"lib"
],
"dependencies": {
"@web/dev-server": "^0.4.6",
"esbuild": "^0.25.10",
"esbuild-plugin-minify-html-literals": "^3.0.0"
}
}