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

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