package.json 492 B

12345678910111213141516171819
  1. {
  2. "name": "fflate",
  3. "version": "0.0.1",
  4. "description": "Native performance decompression in a 3 kB 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. }
  19. }