package.json 730 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "cx-libtranslate",
  3. "version": "1.0.0",
  4. "description": "This is simple library for translating JS app.",
  5. "main": "source/core.js",
  6. "scripts": {
  7. "test": "node test/backend.js",
  8. "build": "esbuild source/core.js --drop-labels=NODE --bundle --outfile=dist/cx-libtranslate.min.js --minify --sourcemap --global-name=cx_libtranslate"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://git.cixoelectronic.pl/cixo-electronic/cx-libtranslate"
  13. },
  14. "keywords": [
  15. "translating",
  16. "frontend"
  17. ],
  18. "author": {
  19. "name": "Cixo Develop",
  20. "email": "[email protected]",
  21. "url": "https://cixoelectronic.pl"
  22. },
  23. "license": "MIT",
  24. "devDependencies": {
  25. "esbuild": "^0.25.5"
  26. }
  27. }