-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@fr0st/ui-authcodeinput",
"version": "3.0.0",
"private": false,
"description": "Segmented authentication code input component for Frost UI with validation, keyboard navigation, and optional form submission.",
"keywords": [
"authentication",
"code",
"component",
"frost",
"frontend",
"javascript",
"one-time-password",
"otp",
"ui"
],
"homepage": "https://github.com/frost-js/ui-authcodeinput",
"bugs": {
"url": "https://github.com/frost-js/ui-authcodeinput/issues",
"email": "elusivecodes@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frost-js/ui-authcodeinput.git"
},
"license": "MIT",
"author": "Elusive <elusivecodes@gmail.com>",
"type": "module",
"exports": {
".": {
"import": "./dist/frost-ui-authcodeinput.esm.js",
"default": "./dist/frost-ui-authcodeinput.esm.js"
},
"./dist/*": "./dist/*",
"./src/*": "./src/*"
},
"main": "./dist/frost-ui-authcodeinput.esm.js",
"jsdelivr": "./dist/frost-ui-authcodeinput.min.js",
"unpkg": "./dist/frost-ui-authcodeinput.min.js",
"module": "./dist/frost-ui-authcodeinput.esm.js",
"files": [
"dist",
"LICENSE",
"README.md",
"src"
],
"scripts": {
"build": "vite build && vite build --mode umd",
"lint": "eslint",
"test": "npm run build && npm run test:browser",
"test:browser": "playwright test --forbid-only",
"test:coverage": "playwright test --config=playwright.coverage.config.js --forbid-only",
"test:headed": "playwright test --forbid-only --headed",
"test:ui": "playwright test --ui"
},
"browserslist": [
"baseline newly available"
],
"devDependencies": {
"@fr0st/eslint-config": "^5.0.3",
"@fr0st/query": "^4.1.2",
"@fr0st/ui": "^3.0.3",
"@playwright/test": "^1.62.1",
"eslint": "^10.9.1",
"monocart-reporter": "^2.12.6",
"vite": "^8.2.2"
},
"peerDependencies": {
"@fr0st/query": "^4.1.2",
"@fr0st/ui": "^3.0.0"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"publishConfig": {
"access": "public"
}
}