-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.89 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.89 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
{
"name": "blokr",
"version": "0.4.0",
"sideEffects": false,
"description": "Lightweight library to block user interactions in browsers",
"keywords": [
"event",
"blocking",
"lock",
"disable",
"interaction",
"ui",
"browser",
"factory",
"scope",
"element",
"modal",
"overlay",
"pointer-events"
],
"author": "KNOWLEDGECODE",
"license": "MIT",
"homepage": "https://github.com/knowledgecode/blokr#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/knowledgecode/blokr.git"
},
"bugs": {
"url": "https://github.com/knowledgecode/blokr/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js"
}
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run clean && vite build",
"clean": "rm -rf dist",
"dev": "vite",
"lint": "eslint",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin": "^5.7.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.1.0",
"@types/react": "^19.2.10",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/browser-playwright": "^4.0.18",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"playwright": "^1.58.0",
"react": "^19.2.3",
"rollup-plugin-license": "^3.6.0",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18"
}
}