-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.09 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "focus-hunter",
"version": "1.0.12",
"description": "A tiny focus trapping utility that respects shadow DOMs and slots.",
"main": "./exports/focus-hunter.js",
"module": "./exports/focus-hunter.js",
"types": "./exports/focus-hunter.d.ts",
"exports": {
".": "./exports/focus-hunter.js",
"./package.json": "./package.json",
"./exports/*.js": "./exports/*.js",
"./exports/*": "./exports/*",
"./types/*": "./types/*.d.ts"
},
"type": "module",
"files": [
"exports",
"internal",
"types",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rimraf -g \"./exports/**/*.d.ts\" && tsc",
"build:site": "rollup -c ./rollup.config.js && cp -R media www/media",
"start": "web-dev-server --watch",
"deploy:patch": "npm run build && npm version patch && npm publish && git push --follow-tags",
"deploy:minor": "npm run build && npm version minor && npm publish && git push --follow-tags",
"deploy:major": "npm run build && npm version major && npm publish && git push --follow-tags",
"deploy:site": "npm run build && npm run build:site && gh-pages -d ./www -b gh-pages",
"test": "web-test-runner"
},
"keywords": [
"web-components",
"aria",
"focus",
"trap",
"focus-trap",
"focus trap"
],
"license": "MIT",
"repository": "[email protected]:KonnorRogers/focus-hunter.git",
"bugs": {
"url": "https://github.com/KonnorRogers/focus-hunter/issues"
},
"homepage": "https://konnorrogers.github.io/focus-hunter",
"author": "KonnorRogers <[email protected]>",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@open-wc/testing": "^3.2.0",
"@open-wc/testing-helpers": "^2.3.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@web/dev-server": "^0.4.1",
"@web/rollup-plugin-html": "^2.1.2",
"@web/test-runner": "^0.18.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"focus-hunter": "link:.",
"gh-pages": "^6.1.1",
"playwright": "^1.40.1",
"rimraf": "^5.0.5",
"rollup": "^3.28.1",
"typescript": "^5.2.2"
}
}