threepipe
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

package.json 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. {
  2. "name": "threepipe",
  3. "version": "0.0.33",
  4. "description": "A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.",
  5. "main": "dist/index.js",
  6. "module": "dist/index.mjs",
  7. "types": "src/index.ts",
  8. "sources": "src/index.ts",
  9. "browser": "dist/index.js",
  10. "type": "module",
  11. "scripts": {
  12. "compile": "rimraf lib && npm run compile:esm && npm run copy:css",
  13. "compile:esm": "tsc -p ./src",
  14. "copy:css": "copyfiles -u 1 \"src/**/*.css\" lib",
  15. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  16. "new:publish": "npm run prepare && clean-package && npm publish && clean-package restore",
  17. "build:rollup": "rimraf dist && npm run update-version && NODE_ENV=production rollup -c",
  18. "build": "npm run update-version && npm run compile && vite build",
  19. "dev:rollup": "rollup -c -w",
  20. "dev": "NODE_ENV=development vite build --watch",
  21. "build-examples": "tsc --project examples/tsconfig.build.json",
  22. "dev-examples": "tsc --project examples/tsconfig.build.json -w",
  23. "serve-docs": "ws -d docs -p 8080",
  24. "serve": "ws -d . -p 9229",
  25. "docs": "npx typedoc && npm run website:build",
  26. "docs-plugins": "node scripts/each-plugin.mjs run docs",
  27. "docs-all": "npm run docs && npm run docs-plugins",
  28. "build-plugins": "node scripts/each-plugin.mjs install",
  29. "prepare": "npm run build && npm run build-plugins && npm run build-examples",
  30. "update-version": "node scripts/update-version.mjs",
  31. "website:dev": "vitepress dev website",
  32. "website:build": "vitepress build website",
  33. "website:preview": "vitepress preview website"
  34. },
  35. "clean-package": {
  36. "remove": [
  37. "clean-package",
  38. "scripts",
  39. "devDependencies",
  40. "optionalDependencies",
  41. "//",
  42. "markdown-to-html"
  43. ],
  44. "replace": {
  45. "main": "dist/index.js",
  46. "module": "dist/index.mjs",
  47. "browser": "dist/index.js",
  48. "types": "dist/index.d.ts"
  49. }
  50. },
  51. "files": [
  52. "dist",
  53. "src",
  54. "lib",
  55. "examples",
  56. "plugins/*/dist",
  57. "plugins/*/src",
  58. "plugins/*/tsconfig.json",
  59. "tsconfig.json"
  60. ],
  61. "repository": {
  62. "type": "git",
  63. "url": "git://github.com/repalash/threepipe.git"
  64. },
  65. "keywords": [
  66. "3d",
  67. "three.js",
  68. "typescript",
  69. "javascipt",
  70. "browser",
  71. "esm",
  72. "rendering",
  73. "viewer",
  74. "webgl",
  75. "webgi",
  76. "canvas"
  77. ],
  78. "author": "repalash <palash@shaders.app>",
  79. "license": "Apache-2.0",
  80. "bugs": {
  81. "url": "https://github.com/repalash/threepipe/issues"
  82. },
  83. "homepage": "https://github.com/repalash/threepipe#readme",
  84. "devDependencies": {
  85. "@rollup/plugin-commonjs": "^25.0.0",
  86. "@rollup/plugin-json": "^6.0.0",
  87. "@rollup/plugin-node-resolve": "^15.0.2",
  88. "@rollup/plugin-replace": "^5.0.2",
  89. "@rollup/plugin-terser": "^0.4.3",
  90. "@rollup/plugin-typescript": "^11.1.5",
  91. "@types/stats.js": "^0.17.0",
  92. "@typescript-eslint/eslint-plugin": "^5.59.7",
  93. "@typescript-eslint/parser": "^5.59.5",
  94. "clean-package": "^2.2.0",
  95. "copyfiles": "^2.4.1",
  96. "eslint": "^8.40.0",
  97. "eslint-import-resolver-typescript": "^3.5.5",
  98. "eslint-plugin-deprecation": "^1.4.1",
  99. "eslint-plugin-html": "^7.1.0",
  100. "eslint-plugin-import": "^2.27.5",
  101. "local-web-server": "^5.3.0",
  102. "markdown-to-html-cli": "^3.7.0",
  103. "popmotion": "^11.0.5",
  104. "rimraf": "^5.0.1",
  105. "rollup": "^3.23.0",
  106. "rollup-plugin-glsl": "^1.3.0",
  107. "rollup-plugin-license": "^3.0.1",
  108. "rollup-plugin-postcss": "^4.0.2",
  109. "three": "https://github.com/repalash/three.js-modded/releases/download/v0.153.1003/package.tgz",
  110. "tslib": "^2.5.0",
  111. "typedoc": "^0.25.7",
  112. "typescript": "^5.3.3",
  113. "typescript-plugin-css-modules": "^5.0.1",
  114. "vite": "^5.3.5",
  115. "vite-plugin-dts": "^3.7.0",
  116. "vitepress": "^1.3.2"
  117. },
  118. "dependencies": {
  119. "@types/three": "https://github.com/repalash/three-ts-types/releases/download/v0.153.1002/package.tgz",
  120. "@types/webxr": "^0.5.1",
  121. "@types/wicg-file-system-access": "^2020.9.5",
  122. "stats.js": "^0.17.0",
  123. "ts-browser-helpers": "^0.14.2",
  124. "uiconfig.js": "^0.0.12"
  125. },
  126. "//": {
  127. "dependencies": {
  128. "uiconfig.js": "^0.0.12",
  129. "ts-browser-helpers": "^0.14.2",
  130. "three": "https://github.com/repalash/three.js-modded/releases/download/v0.153.1003/package.tgz",
  131. "three-f": "https://github.com/repalash/three.js-modded/archive/refs/tags/v0.153.1003.tar.gz",
  132. "@types/three": "https://github.com/repalash/three-ts-types/releases/download/v0.153.1002/package.tgz",
  133. "@types/three-f": "https://github.com/repalash/three-ts-types/archive/refs/tags/v0.153.1002.tar.gz",
  134. "@types/three-pkg": "https://gitpkg.now.sh/repalash/three-ts-types/types/three?modded_three"
  135. },
  136. "local_dependencies": {
  137. "uiconfig.js": "^file:./../uiconfig",
  138. "ts-browser-helpers": "file:./../ts-browser-helpers",
  139. "three": "file:./../three.js",
  140. "@types/three": "file:./../three-ts-types/types/three"
  141. }
  142. },
  143. "optionalDependencies": {
  144. "win-node-env": "^0.6.1"
  145. },
  146. "browserslist": [
  147. "defaults"
  148. ],
  149. "markdown-to-html": {
  150. "document": {
  151. "title": "Three Pipe",
  152. "description": "A new way to work with three.js, 3D models and rendering on the web.",
  153. "style": "body { padding: 4rem; } @media (max-width: 768px) { body { padding: 2.5rem 1rem; } }",
  154. "meta": [
  155. {
  156. "description": "A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility"
  157. },
  158. {
  159. "keywords": "3d,three.js,typescript,javascipt,browser,esm,rendering,viewer,webgl,webgi,canvas"
  160. }
  161. ]
  162. },
  163. "favicon": "data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🌐</text></svg>",
  164. "github-corners": "https://github.com/repalash/threepipe",
  165. "reurls": {
  166. "README.md": "index.html"
  167. }
  168. },
  169. "sideEffects": false
  170. }