This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
forked from discord/focus-rings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.95 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
68
69
70
{
"name": "@meitner/react-focus-rings",
"version": "1.0.8",
"author": "Mattis Abrahamsson <[email protected]>",
"description": "A centralized system for displaying and stylizing focus indicators anywhere on a webpage.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/meitner-se/focus-rings.git"
},
"homepage": "https://github.com/meitner-se/focus-rings#readme",
"keywords": [
"a11y",
"focus",
"focus-indicator",
"focus-ring",
"layer",
"react",
"typescript"
],
"source": "src/index.tsx",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"files": [
"src",
"dist"
],
"scripts": {
"format": "prettier --write '**'",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && microbundle --external react --jsx React.createElement",
"examples": "parcel serve examples/index.html",
"prepublishOnly": "npm run -s build"
},
"peerDependencies": {
"react": "16.8 - 17"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-typescript": "^7.14.6",
"@types/classnames": "^2.2.11",
"@types/invariant": "^2.2.34",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/shallowequal": "^1.1.1",
"microbundle": "^0.12.4",
"parcel": "^1.12.4",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.12.0",
"typescript": "4.1.2"
},
"bugs": {
"url": "https://github.com/discord/focus-rings/issues"
},
"dependencies": {
"classnames": "^2.2.6",
"focus-visible": "^5.2.0",
"invariant": "^2.2.4",
"shallowequal": "^1.1.0"
},
"directories": {
"example": "examples"
}
}