generated from github/custom-element-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "@sonicgarden/webauthn-elements",
"version": "0.2.3",
"description": "Webauthn custom element.",
"main": "dist/webauthn-elements.js",
"module": "dist/webauthn-elements.js",
"type": "module",
"types": "types/index.d.ts",
"license": "MIT",
"repository": "sonicgarden/webauthn-elements",
"files": [
"dist",
"types"
],
"scripts": {
"clean": "rm -rf dist types",
"lint": "eslint . --ext .ts,.js",
"prebuild": "pnpm run clean && pnpm run lint && mkdir dist",
"build": "tsc && vite build",
"dev": "vite --open",
"prepublishOnly": "pnpm run build"
},
"prettier": "@github/prettier-config",
"dependencies": {
"@github/webauthn-json": "^2.1.1"
},
"devDependencies": {
"@github/browserslist-config": "^1.0.0",
"@github/prettier-config": "^0.0.6",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"eslint-plugin-custom-elements": "^0.0.8",
"eslint-plugin-github": "5.0.0-2",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"packageManager": "[email protected]"
}