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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. {
  2. "name": "threepipe",
  3. "version": "0.0.22",
  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 && 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 && markdown-to-html",
  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 compile && npm run build-plugins && npm run build-examples",
  30. "update-version": "echo \"export const VERSION = '$npm_package_version'\" > src/viewer/version.ts"
  31. },
  32. "clean-package": {
  33. "remove": [
  34. "clean-package",
  35. "scripts",
  36. "devDependencies",
  37. "optionalDependencies",
  38. "//",
  39. "markdown-to-html"
  40. ],
  41. "replace": {
  42. "main": "dist/index.js",
  43. "module": "dist/index.mjs",
  44. "browser": "dist/index.js",
  45. "types": "dist/index.d.ts"
  46. }
  47. },
  48. "files": [
  49. "dist",
  50. "src",
  51. "examples",
  52. "plugins/*/dist",
  53. "plugins/*/src",
  54. "plugins/*/tsconfig.json",
  55. "tsconfig.json"
  56. ],
  57. "repository": {
  58. "type": "git",
  59. "url": "git://github.com/repalash/threepipe.git"
  60. },
  61. "keywords": [
  62. "3d",
  63. "three.js",
  64. "typescript",
  65. "javascipt",
  66. "browser",
  67. "esm",
  68. "rendering",
  69. "viewer",
  70. "webgl",
  71. "webgi",
  72. "canvas"
  73. ],
  74. "author": "repalash <palash@shaders.app>",
  75. "license": "Apache-2.0",
  76. "bugs": {
  77. "url": "https://github.com/repalash/threepipe/issues"
  78. },
  79. "homepage": "https://github.com/repalash/threepipe#readme",
  80. "devDependencies": {
  81. "@rollup/plugin-commonjs": "^25.0.0",
  82. "@rollup/plugin-json": "^6.0.0",
  83. "@rollup/plugin-node-resolve": "^15.0.2",
  84. "@rollup/plugin-replace": "^5.0.2",
  85. "@rollup/plugin-terser": "^0.4.3",
  86. "@rollup/plugin-typescript": "^11.1.5",
  87. "@types/stats.js": "^0.17.0",
  88. "@typescript-eslint/eslint-plugin": "^5.59.7",
  89. "@typescript-eslint/parser": "^5.59.5",
  90. "clean-package": "^2.2.0",
  91. "copyfiles": "^2.4.1",
  92. "eslint": "^8.40.0",
  93. "eslint-import-resolver-typescript": "^3.5.5",
  94. "eslint-plugin-deprecation": "^1.4.1",
  95. "eslint-plugin-html": "^7.1.0",
  96. "eslint-plugin-import": "^2.27.5",
  97. "local-web-server": "^5.3.0",
  98. "markdown-to-html-cli": "^3.7.0",
  99. "popmotion": "^11.0.5",
  100. "rimraf": "^5.0.1",
  101. "rollup": "^3.23.0",
  102. "rollup-plugin-glsl": "^1.3.0",
  103. "rollup-plugin-license": "^3.0.1",
  104. "rollup-plugin-postcss": "^4.0.2",
  105. "three": "https://github.com/repalash/three.js-modded/releases/download/v0.152.2021/package.tgz",
  106. "tslib": "^2.5.0",
  107. "typedoc": "^0.25.7",
  108. "typescript": "^5.3.3",
  109. "typescript-plugin-css-modules": "^5.0.1",
  110. "vite": "^5.0.12",
  111. "vite-plugin-dts": "^3.7.0"
  112. },
  113. "dependencies": {
  114. "@types/three": "https://github.com/repalash/three-ts-types/releases/download/v0.152.1020/package.tgz",
  115. "@types/webxr": "^0.5.1",
  116. "@types/wicg-file-system-access": "^2020.9.5",
  117. "stats.js": "^0.17.0",
  118. "ts-browser-helpers": "^0.12.0",
  119. "uiconfig.js": "^0.0.12"
  120. },
  121. "//": {
  122. "dependencies": {
  123. "uiconfig.js": "^0.0.12",
  124. "ts-browser-helpers": "^0.12.0",
  125. "three": "https://github.com/repalash/three.js-modded/releases/download/v0.152.2021/package.tgz",
  126. "three-f": "https://github.com/repalash/three.js-modded/archive/refs/tags/v0.152.2021.tar.gz",
  127. "@types/three": "https://github.com/repalash/three-ts-types/releases/download/v0.152.1020/package.tgz",
  128. "@types/three-f": "https://github.com/repalash/three-ts-types/archive/refs/tags/v0.152.1020.tar.gz",
  129. "@types/three-pkg": "https://gitpkg.now.sh/repalash/three-ts-types/types/three?modded_three"
  130. },
  131. "local_dependencies": {
  132. "uiconfig.js": "^file:./../uiconfig",
  133. "ts-browser-helpers": "file:./../ts-browser-helpers",
  134. "three": "file:./../three.js",
  135. "@types/three": "file:./../three-ts-types/types/three"
  136. }
  137. },
  138. "optionalDependencies": {
  139. "win-node-env": "^0.6.1"
  140. },
  141. "browserslist": [
  142. "defaults"
  143. ],
  144. "markdown-to-html": {
  145. "document": {
  146. "title": "Three Pipe",
  147. "description": "A new way to work with three.js, 3D models and rendering on the web.",
  148. "style": "body { padding: 4rem; } @media (max-width: 768px) { body { padding: 2.5rem 1rem; } }",
  149. "meta": [
  150. {
  151. "description": "A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility"
  152. },
  153. {
  154. "keywords": "3d,three.js,typescript,javascipt,browser,esm,rendering,viewer,webgl,webgi,canvas"
  155. }
  156. ]
  157. },
  158. "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>",
  159. "github-corners": "https://github.com/repalash/threepipe",
  160. "reurls": {
  161. "README.md": "index.html"
  162. }
  163. },
  164. "sideEffects": false
  165. }