package.json 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. {
  2. "_args": [
  3. [
  4. "three@0.132.2",
  5. "/Users/mac/Desktop/zz的项目/cdss/西安空军军医大学/cdss_xzrm"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "three@0.132.2",
  10. "_id": "three@0.132.2",
  11. "_inBundle": false,
  12. "_integrity": "sha1-lesYVhRyN8A+iHy75W+WS2+0C14=",
  13. "_location": "/three",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "three@0.132.2",
  19. "name": "three",
  20. "escapedName": "three",
  21. "rawSpec": "0.132.2",
  22. "saveSpec": null,
  23. "fetchSpec": "0.132.2"
  24. },
  25. "_requiredBy": [
  26. "/3d-force-graph"
  27. ],
  28. "_resolved": "https://registry.nlark.com/three/download/three-0.132.2.tgz",
  29. "_spec": "0.132.2",
  30. "_where": "/Users/mac/Desktop/zz的项目/cdss/西安空军军医大学/cdss_xzrm",
  31. "author": {
  32. "name": "mrdoob"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/mrdoob/three.js/issues"
  36. },
  37. "description": "JavaScript 3D library",
  38. "devDependencies": {
  39. "@babel/core": "^7.14.8",
  40. "@babel/eslint-parser": "^7.14.7",
  41. "@babel/plugin-proposal-class-properties": "^7.14.5",
  42. "@babel/preset-env": "^7.14.8",
  43. "@rollup/plugin-babel": "^5.3.0",
  44. "@rollup/plugin-node-resolve": "^13.0.4",
  45. "chalk": "^4.1.2",
  46. "concurrently": "^6.2.0",
  47. "eslint": "^7.31.0",
  48. "eslint-config-mdcs": "^5.0.0",
  49. "eslint-plugin-html": "^6.1.2",
  50. "glob": "^7.1.7",
  51. "rollup": "^2.55.1",
  52. "rollup-plugin-filesize": "^9.1.1",
  53. "rollup-plugin-terser": "^7.0.2",
  54. "rollup-plugin-visualizer": "^5.5.2",
  55. "servez": "^1.11.0"
  56. },
  57. "directories": {
  58. "doc": "docs",
  59. "example": "examples",
  60. "test": "test"
  61. },
  62. "eslintConfig": {
  63. "root": true,
  64. "extends": "mdcs",
  65. "parser": "@babel/eslint-parser",
  66. "parserOptions": {
  67. "babelOptions": {
  68. "configFile": "./utils/build/.babelrc.json"
  69. }
  70. },
  71. "plugins": [
  72. "html"
  73. ],
  74. "globals": {
  75. "potpack": true,
  76. "fflate": true,
  77. "ZSTDDecoder": true,
  78. "bodymovin": true,
  79. "OIMO": true,
  80. "Stats": true,
  81. "XRWebGLBinding": true,
  82. "XRWebGLLayer": true
  83. },
  84. "rules": {
  85. "quotes": [
  86. "error",
  87. "single"
  88. ],
  89. "prefer-const": [
  90. "error",
  91. {
  92. "destructuring": "any",
  93. "ignoreReadBeforeAssign": false
  94. }
  95. ]
  96. }
  97. },
  98. "files": [
  99. "build/three.js",
  100. "build/three.min.js",
  101. "build/three.module.js",
  102. "examples/js",
  103. "examples/jsm",
  104. "examples/fonts",
  105. "LICENSE",
  106. "package.json",
  107. "README.md",
  108. "src"
  109. ],
  110. "homepage": "https://threejs.org/",
  111. "jspm": {
  112. "files": [
  113. "package.json",
  114. "LICENSE",
  115. "README.md",
  116. "build/three.js",
  117. "build/three.min.js",
  118. "build/three.module.js"
  119. ],
  120. "directories": {}
  121. },
  122. "keywords": [
  123. "three",
  124. "three.js",
  125. "javascript",
  126. "3d",
  127. "virtual-reality",
  128. "augmented-reality",
  129. "webgl",
  130. "webgl2",
  131. "webaudio",
  132. "webgpu",
  133. "webxr",
  134. "canvas",
  135. "svg",
  136. "html5"
  137. ],
  138. "license": "MIT",
  139. "main": "build/three.js",
  140. "module": "build/three.module.js",
  141. "name": "three",
  142. "repository": {
  143. "type": "git",
  144. "url": "git+https://github.com/mrdoob/three.js.git"
  145. },
  146. "scripts": {
  147. "build": "rollup -c utils/build/rollup.config.js",
  148. "build-examples": "rollup -c utils/build/rollup.examples.config.js && echo '\nFormatting...' && eslint examples/js --ext js --ignore-pattern libs --ignore-pattern ifc --fix",
  149. "build-module": "ONLY_MODULE=true rollup -c utils/build/rollup.config.js",
  150. "dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c utils/build/rollup.config.js -w -m inline\" \"servez -p 8080\"",
  151. "lint": "eslint src --ext js",
  152. "lint-docs": "eslint docs --ext html",
  153. "lint-examples": "eslint examples/js examples/jsm --ext js --ignore-pattern libs --ignore-pattern ifc",
  154. "lint-fix": "npm run lint -- --fix && npm run lint-examples -- --fix",
  155. "make-screenshot": "node test/e2e/puppeteer.js --make",
  156. "prepublishOnly": "node utils/prepublish.js",
  157. "start": "npm run dev",
  158. "test": "npm run lint && npm run test-unit",
  159. "test-e2e": "node test/e2e/puppeteer.js",
  160. "test-e2e-cov": "node test/e2e/check-coverage.js",
  161. "test-treeshake": "rollup -c test/rollup.treeshake.config.js",
  162. "test-unit": "npm run unit --prefix test",
  163. "test-unit-examples": "npm run unit-examples --prefix test"
  164. },
  165. "sideEffects": false,
  166. "version": "0.132.2"
  167. }