threepipe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 ay önce
1 yıl önce
1 yıl önce
2 yıl önce
11 ay önce
1 yıl önce
1 yıl önce
1 yıl önce
1 yıl önce
1 ay önce
1 yıl önce
1 yıl önce
1 yıl önce
1 ay önce
1 yıl önce
1 ay önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. {
  2. "name": "threepipe",
  3. "version": "0.0.52",
  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. "vite": "NODE_ENV=development vite --config vite.examples.config.js",
  39. "build-examples": "npm run generate-example-env && tsc --project examples/tsconfig.build.json",
  40. "dev-examples": "npm run generate-example-env && tsc --project examples/tsconfig.build.json -w",
  41. "serve-docs": "ws -d docs -p 8080",
  42. "serve": "ws -d . -p 9229",
  43. "docs": "npx typedoc && npm run website:build",
  44. "docs-plugins": "node scripts/each-plugin.mjs run docs",
  45. "docs-all": "npm run docs && npm run docs-plugins",
  46. "build-plugins": "node scripts/each-plugin.mjs install -p",
  47. "prepare": "npm run build && npm run build-plugins && npm run build-examples",
  48. "update-version": "node scripts/update-version.mjs",
  49. "website:dev": "vitepress dev website",
  50. "website:build": "vitepress build website",
  51. "website:preview": "vitepress preview website",
  52. "build-site": "bash ./scripts/build-site.sh",
  53. "generate-example-env": "node ./scripts/generate-example-env.mjs"
  54. },
  55. "clean-package": {
  56. "remove": [
  57. "clean-package",
  58. "scripts",
  59. "optionalDependencies",
  60. "//"
  61. ]
  62. },
  63. "files": [
  64. "dist",
  65. "src",
  66. "lib",
  67. "plugins/*/dist",
  68. "plugins/*/src",
  69. "plugins/*/tsconfig.json",
  70. "tsconfig.json"
  71. ],
  72. "repository": {
  73. "type": "git",
  74. "url": "git://github.com/repalash/threepipe.git"
  75. },
  76. "keywords": [
  77. "3d",
  78. "three.js",
  79. "typescript",
  80. "javascipt",
  81. "browser",
  82. "esm",
  83. "rendering",
  84. "viewer",
  85. "webgl",
  86. "webgi",
  87. "canvas"
  88. ],
  89. "author": "repalash <palash@shaders.app>",
  90. "license": "Apache-2.0",
  91. "bugs": {
  92. "url": "https://github.com/repalash/threepipe/issues"
  93. },
  94. "homepage": "https://github.com/repalash/threepipe#readme",
  95. "devDependencies": {
  96. "@rollup/plugin-json": "^6.0.0",
  97. "@rollup/plugin-replace": "^5.0.2",
  98. "@types/node": "^22.10.2",
  99. "@types/stats.js": "^0.17.0",
  100. "@typescript-eslint/eslint-plugin": "^5.59.7",
  101. "@typescript-eslint/parser": "^5.59.5",
  102. "clean-package": "^2.2.0",
  103. "copyfiles": "^2.4.1",
  104. "dotenv": "^16.5.0",
  105. "eslint": "^8.40.0",
  106. "eslint-import-resolver-typescript": "^3.5.5",
  107. "eslint-plugin-deprecation": "^1.4.1",
  108. "eslint-plugin-html": "^7.1.0",
  109. "eslint-plugin-import": "^2.27.5",
  110. "local-web-server": "^5.3.0",
  111. "rimraf": "^5.0.1",
  112. "rollup-plugin-glsl": "^1.3.0",
  113. "rollup-plugin-license": "^3.0.1",
  114. "three": "file:./package.tgz",
  115. "tslib": "^2.5.0",
  116. "typedoc": "^0.28.4",
  117. "typescript": "5.8.3",
  118. "typescript-plugin-css-modules": "^5.0.1",
  119. "vite": "^6.3.5",
  120. "vite-plugin-dts": "^4.5.3",
  121. "vitepress": "^1.5.0",
  122. "vitepress-plugin-nprogress": "^0.0.4"
  123. },
  124. "dependencies": {
  125. "@types/three": "file:./type.package.tgz",
  126. "@types/webxr": "^0.5.1",
  127. "@types/wicg-file-system-access": "^2020.9.5",
  128. "popmotion": "^11.0.5",
  129. "stats.js": "^0.17.0",
  130. "ts-browser-helpers": "^0.17.1",
  131. "uiconfig.js": "^0.1.5"
  132. },
  133. "peerDependencies": {
  134. "three": "file:./package.tgz"
  135. },
  136. "peerDependenciesMeta": {
  137. "three": {
  138. "optional": true
  139. }
  140. },
  141. "//": {
  142. "dependencies": {
  143. "uiconfig.js": "^0.1.5",
  144. "ts-browser-helpers": "^0.17.1",
  145. "three": "https://github.com/repalash/three.js-modded/releases/download/v0.158.1004/package.tgz",
  146. "three-f": "https://github.com/repalash/three.js-modded/archive/refs/tags/v0.158.1004.tar.gz",
  147. "@types/three": "https://github.com/repalash/three-ts-types/releases/download/v0.158.1004/package.tgz",
  148. "@types/three-f": "https://github.com/repalash/three-ts-types/archive/refs/tags/v0.158.1004.tar.gz",
  149. "@types/three-pkg": "https://gitpkg.now.sh/repalash/three-ts-types/types/three?modded_three"
  150. },
  151. "local_dependencies": {
  152. "uiconfig.js": "^file:./../uiconfig",
  153. "ts-browser-helpers": "file:./../ts-browser-helpers",
  154. "three": "file:./../three.js",
  155. "@types/three": "file:./../three-ts-types/types/three"
  156. }
  157. },
  158. "overrides": {
  159. "ts-browser-helpers": "$ts-browser-helpers",
  160. "three": "$three",
  161. "@types/three": "$@types/three"
  162. },
  163. "optionalDependencies": {
  164. "win-node-env": "^0.6.1"
  165. },
  166. "browserslist": [
  167. "defaults"
  168. ],
  169. "sideEffects": false
  170. }