智慧水务管理系统 - 精河县供水工程综合管理平台

package.json 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. {
  2. "name": "@zip.js/zip.js",
  3. "description": "A JavaScript library to zip and unzip files in the browser, Deno and Node.js",
  4. "author": "Gildas Lormeau",
  5. "license": "BSD-3-Clause",
  6. "version": "2.8.26",
  7. "type": "module",
  8. "keywords": [
  9. "zip",
  10. "unzip",
  11. "browser",
  12. "web",
  13. "aes-256",
  14. "aes-192",
  15. "aes-128",
  16. "zip-crypto",
  17. "encryption",
  18. "zip64",
  19. "web-streams",
  20. "compression-streams",
  21. "web-crypto",
  22. "web-workers",
  23. "deno",
  24. "node.js",
  25. "multi-core",
  26. "split-zip",
  27. "usdz",
  28. "deflate64",
  29. "wasm"
  30. ],
  31. "engines": {
  32. "deno": ">=1.0.0",
  33. "node": ">=18.0.0",
  34. "bun": ">=0.7.0"
  35. },
  36. "scripts": {
  37. "build": "npx rollup -c",
  38. "build-dev": "npx rollup -c rollup.config.dev.js",
  39. "build-doc-api": "npx typedoc",
  40. "build-doc-markdown": "npx typedoc --plugin typedoc-plugin-markdown --out ./docs",
  41. "test-deno": "cd ./tests && deno test --allow-read ./deno-runner.js",
  42. "test-node": "cd ./tests && node ./node-runner.js",
  43. "test-bun": "cd ./tests && bun test ./bun-runner.js",
  44. "test-firefox": "firefox http://localhost:8081/tests/ & npx http-server -p=8081 & wait $!",
  45. "test-chrome": "google-chrome http://localhost:8081/tests/ & npx http-server -p=8081 & wait $!"
  46. },
  47. "main": "./index.cjs",
  48. "module": "./index.js",
  49. "types": "./index.d.ts",
  50. "exports": {
  51. "./package.json": "./package.json",
  52. "./dist/zip-web-worker.js": "./dist/zip-web-worker.js",
  53. "./dist/zip-web-worker-native.js": "./dist/zip-web-worker-native.js",
  54. "./dist/zip-module.wasm": "./dist/zip-module.wasm",
  55. ".": {
  56. "import": {
  57. "types": "./index.d.ts",
  58. "default": "./index.js"
  59. },
  60. "require": {
  61. "types": "./index.d.ts",
  62. "default": "./index.cjs"
  63. }
  64. },
  65. "./index-native.js": {
  66. "import": {
  67. "types": "./index.d.ts",
  68. "default": "./index-native.js"
  69. },
  70. "require": {
  71. "types": "./index.d.ts",
  72. "default": "./index-native.cjs"
  73. }
  74. },
  75. "./index.min.js": {
  76. "import": {
  77. "types": "./index.d.ts",
  78. "default": "./index.min.js"
  79. }
  80. },
  81. "./index-native.min.js": {
  82. "import": {
  83. "types": "./index.d.ts",
  84. "default": "./index-native.min.js"
  85. }
  86. },
  87. "./lib/zip-core-reader.js": {
  88. "import": {
  89. "types": "./index.d.ts",
  90. "default": "./lib/zip-core-reader.js"
  91. }
  92. },
  93. "./lib/zip-core-writer.js": {
  94. "import": {
  95. "types": "./index.d.ts",
  96. "default": "./lib/zip-core-writer.js"
  97. }
  98. },
  99. "./lib/zip-fs.js": {
  100. "import": {
  101. "types": "./index.d.ts",
  102. "default": "./lib/zip-fs-wasm.js"
  103. }
  104. },
  105. "./lib/zip-fs-native.js": {
  106. "import": {
  107. "types": "./index.d.ts",
  108. "default": "./lib/zip-fs-native.js"
  109. }
  110. },
  111. "./lib/zip-core.js": {
  112. "import": {
  113. "types": "./index.d.ts",
  114. "default": "./lib/zip-core-wasm.js"
  115. }
  116. },
  117. "./lib/zip-core-native.js": {
  118. "import": {
  119. "types": "./index.d.ts",
  120. "default": "./lib/zip-core-native.js"
  121. }
  122. },
  123. "./lib/zip-fs-core.js": {
  124. "import": {
  125. "types": "./index.d.ts",
  126. "default": "./lib/zip-fs-core-wasm.js"
  127. }
  128. },
  129. "./lib/zip-fs-core-native.js": {
  130. "import": {
  131. "types": "./index.d.ts",
  132. "default": "./lib/zip-fs-core-native.js"
  133. }
  134. },
  135. "./lib/zip.js": {
  136. "import": {
  137. "types": "./index.d.ts",
  138. "default": "./lib/zip-wasm.js"
  139. }
  140. },
  141. "./lib/zip-native.js": {
  142. "import": {
  143. "types": "./index.d.ts",
  144. "default": "./lib/zip-native.js"
  145. }
  146. }
  147. },
  148. "repository": {
  149. "type": "git",
  150. "url": "git+https://github.com/gildas-lormeau/zip.js.git"
  151. },
  152. "bugs": {
  153. "url": "https://github.com/gildas-lormeau/zip.js/issues"
  154. },
  155. "homepage": "https://gildas-lormeau.github.io/zip.js",
  156. "devDependencies": {
  157. "@rollup/plugin-replace": "^6.0.3",
  158. "@rollup/plugin-terser": "^1.0.0",
  159. "eslint": "^10.1.0",
  160. "http-server": "^14.1.1",
  161. "rollup": "^4.60.1",
  162. "typedoc": "^0.28.18",
  163. "typedoc-plugin-markdown": "^4.11.0"
  164. }
  165. }