package.json 545 B

123456789101112131415161718192021
  1. {
  2. "name": "fflate",
  3. "version": "0.0.1",
  4. "description": "Native performance (de)compression in a 3kB 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. "pako": "^1.0.11",
  18. "typescript": "^4.0.2",
  19. "uzip": "^0.20200919.0"
  20. }
  21. }