-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.23 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "webcred",
"version": "1.0.0",
"description": "Lightweight utility wrapper for the browser Credential Management API (navigator.credentials).",
"main": "dist/webcred.cjs.js",
"module": "dist/webcred.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"unpkg": "dist/webcred.esm.min.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/webcred.esm.js",
"require": "./dist/webcred.cjs.js"
},
"./package.json": "./package.json"
},
"maintainers": [
"@bhargavditani"
],
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript --environment INCLUDE_DEPS,BUILD:production",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhargavditani/webcred.git"
},
"keywords": [
"credentials",
"credential-management",
"password-credential",
"federated-credential",
"authentication",
"login",
"signin",
"autofill",
"web-auth",
"browser-auth",
"navigator-credentials",
"auth-utils",
"identity",
"remember-user",
"sign-in"
],
"author": "Bhargav Ditani",
"license": "MIT",
"bugs": {
"url": "https://github.com/bhargavditani/webcred/issues"
},
"homepage": "https://github.com/bhargavditani/webcred#readme",
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "^9.32.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.1.0",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.6.2",
"rollup": "^4.52.4",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
},
"dependencies": {
"@types/webappsec-credential-management": "^0.6.9"
},
"files": [
"dist/**/*",
"README.md"
]
}