package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "lazy-universal-dotenv",
  3. "version": "4.0.0",
  4. "description": "Robust Environment Configuration for Universal Applications.",
  5. "keywords": [
  6. "dotenv",
  7. "env",
  8. "universal"
  9. ],
  10. "homepage": "https://github.com/storybooks/lazy-universal-dotenv#readme",
  11. "bugs": {
  12. "url": "https://github.com/storybooks/lazy-universal-dotenv/issues"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/storybooks/lazy-universal-dotenv.git"
  17. },
  18. "license": "Apache-2.0",
  19. "author": "Storybook Team",
  20. "files": [
  21. "lib/"
  22. ],
  23. "type": "module",
  24. "main": "lib/index.cjs",
  25. "module": "lib/index.mjs",
  26. "exports": {
  27. ".": {
  28. "import": "./lib/index.mjs",
  29. "require": "./lib/index.cjs"
  30. }
  31. },
  32. "scripts": {
  33. "prepare": "rimraf lib && unbuild",
  34. "test": "NODE_OPTIONS=--experimental-vm-modules jest"
  35. },
  36. "dependencies": {
  37. "app-root-dir": "^1.0.2",
  38. "dotenv": "^16.0.0",
  39. "dotenv-expand": "^10.0.0"
  40. },
  41. "devDependencies": {
  42. "jest": "^29.4.1",
  43. "rimraf": "^2.6.2",
  44. "unbuild": "^1.1.1"
  45. },
  46. "engines": {
  47. "node": ">=14.0.0"
  48. }
  49. }