-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
39
40
41
42
43
44
45
{
"name": "@gfellerph/focusgroup-polyfill",
"version": "0.0.1-experimental.4",
"description": "Partial polyfill for the focusgroup attribute (https://open-ui.org/components/focusgroup.explainer/).",
"author": "Philipp Gfeller <[email protected]>",
"license": "MIT",
"keywords": [
"focusgroup",
"polyfill",
"openui"
],
"homepage": "https://gfellerph.github.io/focusgroup-polyfill/",
"repository": {
"type": "git",
"url": "https://github.com/gfellerph/focusgroup-polyfill"
},
"bugs": {
"url": "https://github.com/gfellerph/focusgroup-polyfill/issues"
},
"type": "module",
"browser": "main.js",
"jsdelivr": "cdn.js",
"unpkg": "cdn.js",
"files": [
"main.js",
"src",
"cdn.js"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "vite",
"build": "esbuild main.js --bundle --minify --outfile=cdn.js",
"test": "playwright test",
"testui": "playwright test --ui",
"prepublish": "pnpm build"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/node": "^20.14.1",
"esbuild": "^0.20.0",
"vite": "^5.3.3"
}
}