package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "@jsonjoy.com/fs-fsa",
  3. "publishConfig": {
  4. "access": "public"
  5. },
  6. "version": "4.56.10",
  7. "description": "File System Access API implementation backed by core filesystem primitives",
  8. "author": {
  9. "name": "streamich",
  10. "url": "https://github.com/streamich"
  11. },
  12. "homepage": "https://github.com/streamich/memfs/tree/master/packages/fs-fsa",
  13. "repository": "streamich/memfs",
  14. "license": "Apache-2.0",
  15. "funding": {
  16. "type": "github",
  17. "url": "https://github.com/sponsors/streamich"
  18. },
  19. "keywords": [
  20. "fsa",
  21. "file system access",
  22. "native file system",
  23. "webfs",
  24. "opfs",
  25. "fs",
  26. "filesystem",
  27. "virtual",
  28. "memory"
  29. ],
  30. "engines": {
  31. "node": ">=10.0"
  32. },
  33. "main": "lib/index.js",
  34. "types": "lib/index.d.ts",
  35. "typings": "lib/index.d.ts",
  36. "files": [
  37. "LICENSE",
  38. "lib/"
  39. ],
  40. "scripts": {
  41. "clean": "rimraf lib typedocs coverage gh-pages yarn-error.log",
  42. "build": "tsc --project tsconfig.build.json --module commonjs --target es2020 --outDir lib",
  43. "jest": "node -r ts-node/register ./node_modules/.bin/jest",
  44. "test": "jest --maxWorkers 7",
  45. "test:ci": "yarn jest --maxWorkers 3 --no-cache",
  46. "coverage": "yarn test --collectCoverage",
  47. "typedoc": "typedoc",
  48. "typecheck": "tsc -p ."
  49. },
  50. "jest": {
  51. "preset": "ts-jest",
  52. "testEnvironment": "node",
  53. "moduleFileExtensions": [
  54. "ts",
  55. "js",
  56. "tsx"
  57. ],
  58. "transform": {
  59. "^.+\\.tsx?$": "ts-jest"
  60. },
  61. "transformIgnorePatterns": [
  62. ".*/node_modules/.*"
  63. ],
  64. "testRegex": ".*/(__tests__|__jest__|demo)/.*\\.(test|spec)\\.tsx?$",
  65. "rootDir": ".",
  66. "testPathIgnorePatterns": [
  67. "node_modules"
  68. ]
  69. },
  70. "devDependencies": {
  71. "@types/jest": "^29.0.0",
  72. "@types/node": "^20.0.0",
  73. "jest": "^29.0.0",
  74. "rimraf": "^5.0.0",
  75. "ts-jest": "^29.4.2",
  76. "ts-node": "^10.9.2",
  77. "typescript": "^5.9.2"
  78. },
  79. "peerDependencies": {
  80. "tslib": "2"
  81. },
  82. "dependencies": {
  83. "@jsonjoy.com/fs-core": "4.56.10",
  84. "@jsonjoy.com/fs-node-builtins": "4.56.10",
  85. "@jsonjoy.com/fs-node-utils": "4.56.10",
  86. "thingies": "^2.5.0"
  87. }
  88. }