-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 979 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 979 Bytes
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
{
"name": "@biochain/android-focus-blur-guard",
"private": false,
"version": "0.1.0",
"description": "Android focus/blur loop guard for WebView and iframe contexts",
"type": "module",
"main": "./src/index.ts",
"module": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts",
"default": "./src/index.ts"
}
},
"files": [
"src"
],
"scripts": {
"build": "echo 'No build step required'",
"typecheck": "tsc --noEmit",
"typecheck:run": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run --passWithNoTests",
"test:storybook": "echo 'No storybook'",
"i18n:run": "echo 'No i18n'",
"theme:run": "echo 'No theme'"
},
"devDependencies": {
"jsdom": "^27.2.0",
"typescript": "^5.9.3",
"vitest": "^4.0.0"
},
"keywords": [
"android",
"focus",
"blur",
"guard",
"webview"
],
"license": "MIT"
}