-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkeycode.cabal
47 lines (45 loc) · 1.85 KB
/
keycode.cabal
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
name: keycode
version: 0.2.3
synopsis: Maps web browser keycodes to their corresponding keyboard keys
description: Keyboard events in web browsers are often represented as keycodes,
which (1) are difficult to remember, and (2) sometimes vary from
browser to browser. "Web.KeyCode" allows one to look up a key
press's keycode and get a plain English description of the key
that was pressed, to reduce confusion.
homepage: https://github.com/RyanGlScott/keycode
bug-reports: https://github.com/RyanGlScott/keycode/issues
license: BSD3
license-file: LICENSE
author: Ryan Scott
maintainer: Ryan Scott <[email protected]>
copyright: (C) 2015-2017 Ryan Scott
stability: Experimental
category: Web
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
tested-with: GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.6
, GHC == 9.8.4
, GHC == 9.10.1
, GHC == 9.12.1
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/RyanGlScott/keycode
library
exposed-modules: Web.KeyCode
build-depends: base >= 4.9 && < 5
, containers
, ghc-prim
, template-haskell >= 2.11 && < 2.24
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall