packages feed

keycode-0.2.3: keycode.cabal

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 <ryan.gl.scott@gmail.com>
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.2
                   , GHC == 9.10.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.23
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall