package.json 522 B

1234567891011121314151617181920
  1. {
  2. "name": "fflate",
  3. "version": "0.0.1",
  4. "description": "Native performance (de)compression in a 5kB package",
  5. "main": "lib/index.js",
  6. "module": "esm/index.js",
  7. "types": "lib/index.d.ts",
  8. "repository": "https://github.com/101arrowz/fflate",
  9. "author": "Arjun Barrett",
  10. "license": "MIT",
  11. "scripts": {
  12. "build": "tsc && tsc --project tsconfig.esm.json",
  13. "test": "node test.js",
  14. "prepublish": "yarn build"
  15. },
  16. "devDependencies": {
  17. "typescript": "^4.0.2",
  18. "uzip": "^0.20200905.0"
  19. }
  20. }