threepipe
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. {
  2. "name": "threepipe",
  3. "version": "0.0.40",
  4. "description": "A modern 3D viewer framework built on top of three.js, written in TypeScript, designed to make creating high-quality, modular, and extensible 3D experiences on the web simple and enjoyable.",
  5. "main": "dist/index.js",
  6. "module": "dist/index.mjs",
  7. "types": "dist/index.d.ts",
  8. "sources": "src/index.ts",
  9. "browser": "dist/index.js",
  10. "exports": {
  11. ".": {
  12. "types": "./dist/index.d.ts",
  13. "import": "./dist/index.mjs",
  14. "require": "./dist/index.js"
  15. },
  16. "./dist/": {
  17. "import": "./dist/",
  18. "require": "./dist/"
  19. },
  20. "./lib": {
  21. "types": "./lib/index.d.ts",
  22. "import": "./lib/index.js"
  23. },
  24. "./lib/": {
  25. "import": "./lib/",
  26. "require": "./lib/"
  27. }
  28. },
  29. "type": "module",
  30. "scripts": {
  31. "compile": "rimraf lib && npm run compile:esm && npm run copy:css",
  32. "compile:esm": "tsc -p ./src",
  33. "copy:css": "copyfiles -u 1 \"src/**/*.css\" lib",
  34. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  35. "new:publish": "git diff --exit-code --name-only HEAD * && npm run prepare && clean-package && npm publish && clean-package restore && git tag v$npm_package_version",
  36. "build": "npm run update-version && npm run compile && vite build",
  37. "dev": "NODE_ENV=development vite build --watch",
  38. "build-examples": "tsc --project examples/tsconfig.build.json",
  39. "dev-examples": "tsc --project examples/tsconfig.build.json -w",
  40. "serve-docs": "ws -d docs -p 8080",
  41. "serve": "ws -d . -p 9229",
  42. "docs": "npx typedoc && npm run website:build",
  43. "docs-plugins": "node scripts/each-plugin.mjs run docs",
  44. "docs-all": "npm run docs && npm run docs-plugins",
  45. "build-plugins": "node scripts/each-plugin.mjs install",
  46. "prepare": "npm run build && npm run build-plugins && npm run build-examples",
  47. "update-version": "node scripts/update-version.mjs",
  48. "website:dev": "vitepress dev website",
  49. "website:build": "vitepress build website",
  50. "website:preview": "vitepress preview website"
  51. },
  52. "clean-package": {
  53. "remove": [
  54. "clean-package",
  55. "scripts",
  56. "optionalDependencies",
  57. "//"
  58. ]
  59. },
  60. "files": [
  61. "dist",
  62. "src",
  63. "lib",
  64. "plugins/*/dist",
  65. "plugins/*/src",
  66. "plugins/*/tsconfig.json",
  67. "tsconfig.json"
  68. ],
  69. "repository": {
  70. "type": "git",
  71. "url": "git://github.com/repalash/threepipe.git"
  72. },
  73. "keywords": [
  74. "3d",
  75. "three.js",
  76. "typescript",
  77. "javascipt",
  78. "browser",
  79. "esm",
  80. "rendering",
  81. "viewer",
  82. "webgl",
  83. "webgi",
  84. "canvas"
  85. ],
  86. "author": "repalash <palash@shaders.app>",
  87. "license": "Apache-2.0",
  88. "bugs": {
  89. "url": "https://github.com/repalash/threepipe/issues"
  90. },
  91. "homepage": "https://github.com/repalash/threepipe#readme",
  92. "devDependencies": {
  93. "@rollup/plugin-json": "^6.0.0",
  94. "@rollup/plugin-replace": "^5.0.2",
  95. "@types/stats.js": "^0.17.0",
  96. "@typescript-eslint/eslint-plugin": "^5.59.7",
  97. "@typescript-eslint/parser": "^5.59.5",
  98. "clean-package": "^2.2.0",
  99. "@types/node": "^22.10.2",
  100. "copyfiles": "^2.4.1",
  101. "eslint": "^8.40.0",
  102. "eslint-import-resolver-typescript": "^3.5.5",
  103. "eslint-plugin-deprecation": "^1.4.1",
  104. "eslint-plugin-html": "^7.1.0",
  105. "eslint-plugin-import": "^2.27.5",
  106. "local-web-server": "^5.3.0",
  107. "rimraf": "^5.0.1",
  108. "rollup-plugin-glsl": "^1.3.0",
  109. "rollup-plugin-license": "^3.0.1",
  110. "three": "https://github.com/repalash/three.js-modded/releases/download/v0.157.1007/package.tgz",
  111. "tslib": "^2.5.0",
  112. "typedoc": "^0.27.5",
  113. "typescript": "5.7.2",
  114. "typescript-plugin-css-modules": "^5.0.1",
  115. "vite": "^6.0.5",
  116. "vite-plugin-dts": "^4.4.0",
  117. "vitepress": "^1.5.0",
  118. "vitepress-plugin-nprogress": "^0.0.4"
  119. },
  120. "dependencies": {
  121. "@types/three": "https://github.com/repalash/three-ts-types/releases/download/v0.157.1005/package.tgz",
  122. "@types/webxr": "^0.5.1",
  123. "@types/wicg-file-system-access": "^2020.9.5",
  124. "stats.js": "^0.17.0",
  125. "ts-browser-helpers": "^0.16.2",
  126. "uiconfig.js": "^0.1.3",
  127. "popmotion": "^11.0.5"
  128. },
  129. "peerDependencies": {
  130. "three": "https://github.com/repalash/three.js-modded/releases/download/v0.157.1007/package.tgz"
  131. },
  132. "peerDependenciesMeta": {
  133. "three": {
  134. "optional": true
  135. }
  136. },
  137. "//": {
  138. "dependencies": {
  139. "uiconfig.js": "^0.1.3",
  140. "ts-browser-helpers": "^0.16.2",
  141. "three": "https://github.com/repalash/three.js-modded/releases/download/v0.157.1007/package.tgz",
  142. "three-f": "https://github.com/repalash/three.js-modded/archive/refs/tags/v0.157.1007.tar.gz",
  143. "@types/three": "https://github.com/repalash/three-ts-types/releases/download/v0.157.1005/package.tgz",
  144. "@types/three-f": "https://github.com/repalash/three-ts-types/archive/refs/tags/v0.157.1005.tar.gz",
  145. "@types/three-pkg": "https://gitpkg.now.sh/repalash/three-ts-types/types/three?modded_three"
  146. },
  147. "local_dependencies": {
  148. "uiconfig.js": "^file:./../uiconfig",
  149. "ts-browser-helpers": "file:./../ts-browser-helpers",
  150. "three": "file:./../three.js",
  151. "@types/three": "file:./../three-ts-types/types/three"
  152. }
  153. },
  154. "overrides": {
  155. "ts-browser-helpers": "$ts-browser-helpers",
  156. "three": "$three",
  157. "@types/three": "$@types/three"
  158. },
  159. "optionalDependencies": {
  160. "win-node-env": "^0.6.1"
  161. },
  162. "browserslist": [
  163. "defaults"
  164. ],
  165. "sideEffects": false
  166. }