generated from github/custom-element-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.28 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
{
"name": "@sonicgarden/native-datepicker-element",
"version": "0.1.0",
"description": "Custom Element for a lightweight, library-free datepicker that enhances native date inputs with modern styling and extended functionality.",
"main": "dist/native-datepicker.js",
"module": "dist/native-datepicker.js",
"type": "module",
"types": "dist/native-datepicker.d.ts",
"license": "MIT",
"repository": "SonicGarden/native-datepicker-element",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts,.js",
"prebuild": "pnpm run clean && pnpm run lint && mkdir dist",
"build": "tsc",
"start": "web-dev-server --node-resolve --open --watch --app-index=examples/index.html --root-dir=. --esbuild-target auto",
"prepublishOnly": "pnpm run build"
},
"prettier": "@github/prettier-config",
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"@web/dev-server": "^0.4.6",
"@web/dev-server-esbuild": "^1.0.2",
"eslint": "^8.57.0",
"eslint-plugin-custom-elements": "^0.0.8",
"eslint-plugin-github": "^5.0.1",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
}