package.json 840 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@yarnpkg/fslib",
  3. "version": "2.10.3",
  4. "license": "BSD-2-Clause",
  5. "main": "./lib/index.js",
  6. "sideEffects": false,
  7. "dependencies": {
  8. "@yarnpkg/libzip": "^2.3.0",
  9. "tslib": "^1.13.0"
  10. },
  11. "scripts": {
  12. "postpack": "rm -rf lib",
  13. "prepack": "run build:compile \"$(pwd)\"",
  14. "release": "yarn npm publish",
  15. "test:fslib": "run test:unit packages/yarnpkg-fslib",
  16. "test:watch:fslib": "run test:unit --watch packages/yarnpkg-fslib"
  17. },
  18. "publishConfig": {
  19. "main": "./lib/index.js",
  20. "typings": "./lib/index.d.ts"
  21. },
  22. "files": [
  23. "/lib/**/*"
  24. ],
  25. "repository": {
  26. "type": "git",
  27. "url": "ssh://git@github.com/yarnpkg/berry.git",
  28. "directory": "packages/yarnpkg-fslib"
  29. },
  30. "engines": {
  31. "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0"
  32. },
  33. "typings": "./lib/index.d.ts"
  34. }