Skip to content

Commit

Permalink
fix: fix type declaration file path
Browse files Browse the repository at this point in the history
  • Loading branch information
aaharu committed Apr 15, 2020
1 parent 48c4b43 commit ddac071
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions package.json
Expand Up @@ -2,19 +2,21 @@
"name": "gifken",
"version": "2.1.0",
"description": "TypeScript / JavaScript GIF parser and maker",
"main": "lib/gifken.cjs.js",
"module": "lib/gifken.esm.js",
"main": "lib/gifken.cjs",
"module": "lib/gifken.mjs",
"browser": "lib/gifken.umd.js",
"types": "lib/index.d.ts",
"types": "lib/src/index.d.ts",
"type": "commonjs",
"homepage": "https://aaharu.github.io/gifken/",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"pretest": "rimraf coverage",
"clean": "rimraf lib coverage docs",
"clean": "rimraf lib coverage",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .ts --ignore-path .gitignore .",
"predoc": "rimraf docs",
"doc": "typedoc --target es2015 --module commonjs --out docs --readme README.md src && node d.js",
"release": "standard-version"
},
Expand Down Expand Up @@ -59,7 +61,8 @@
"typescript": "^3.8.3"
},
"files": [
"lib"
"lib",
"src"
],
"keywords": [
"animated-gif",
Expand Down

0 comments on commit ddac071

Please sign in to comment.