diff --git a/bower.json b/bower.json index e11748f..332a278 100644 --- a/bower.json +++ b/bower.json @@ -1,26 +1,19 @@ { - "name": "purescript-arraybuffer-types", - "homepage": "https://github.com/purescript-contrib/purescript-arraybuffer-types", - "description": "PureScript type definitions for JavaScript ArrayBuffers", - "keywords": [ - "purescript" - ], - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/purescript-contrib/purescript-arraybuffer-types.git" - }, - "ignore": [ - "**/.*", - "bower_components", - "node_modules", - "output", - "bower.json", - "gulpfile.js", - "package.json" - ], - "devDependencies": { - "purescript-console": "^5.0.0", - "purescript-effect": "^3.0.0" - } + "name": "purescript-arraybuffer-types", + "license": [ + "MIT" + ], + "repository": { + "type": "git", + "url": "https://github.com/purescript-contrib/purescript-arraybuffer-types" + }, + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "output" + ], + "dependencies": { + "purescript-psci-support": "^v5.0.0" + } } diff --git a/spago.dhall b/spago.dhall index 422ceff..7225550 100644 --- a/spago.dhall +++ b/spago.dhall @@ -1,5 +1,7 @@ { name = "arraybuffer-types" -, dependencies = [ "console", "effect", "psci-support" ] +, dependencies = [ "psci-support" ] , packages = ./packages.dhall , sources = [ "src/**/*.purs" ] +, license = "MIT" +, repository = "https://github.com/purescript-contrib/purescript-arraybuffer-types" }