threepipe
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

package.json 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. ],
  43. "replace": {
  44. "main": "dist/index.js",
  45. "module": "dist/index.mjs",
  46. "browser": "dist/index.js",
  47. "types": "dist/index.d.ts"
  48. }
  49. },
  50. "files": [
  51. "dist",
  52. "src",
  53. "lib",
  54. "examples",
  55. "plugins/*/dist",
  56. "plugins/*/src",
  57. "plugins/*/tsconfig.json",
  58. "tsconfig.json"
  59. ],
  60. "repository": {
  61. "type": "git",
  62. "url": "git://github.com/repalash/threepipe.git"
  63. },
  64. "keywords": [
  65. "3d",
  66. "three.js",
  67. "typescript",
  68. "javascipt",
  69. "browser",
  70. "esm",
  71. "rendering",
  72. "viewer",
  73. "webgl",
  74. "webgi",
  75. "canvas"
  76. ],
  77. "author": "repalash <palash@shaders.app>",
  78. "license": "Apache-2.0",
  79. "bugs": {
  80. "url": "https://github.com/repalash/threepipe/issues"
  81. },
  82. "homepage": "https://github.com/repalash/threepipe#readme",
  83. "devDependencies": {
  84. "@rollup/plugin-commonjs": "^25.0.0",
  85. "@rollup/plugin-json": "^6.0.0",
  86. "@rollup/plugin-node-resolve": "^15.0.2",
  87. "@rollup/plugin-replace": "^5.0.2",
  88. "@rollup/plugin-terser": "^0.4.3",
  89. "@rollup/plugin-typescript": "^11.1.5",
  90. "@types/stats.js": "^0.17.0",
  91. "@typescript-eslint/eslint-plugin": "^5.59.7",
  92. "@typescript-eslint/parser": "^5.59.5",
  93. "clean-package": "^2.2.0",
  94. "copyfiles": "^2.4.1",
  95. "eslint": "^8.40.0",
  96. "eslint-import-resolver-typescript": "^3.5.5",
  97. "eslint-plugin-deprecation": "^1.4.1",
  98. "eslint-plugin-html": "^7.1.0",
  99. "eslint-plugin-import": "^2.27.5",
  100. "local-web-server": "^5.3.0",
  101. "popmotion": "^11.0.5",
  102. "rimraf": "^5.0.1",
  103. "rollup": "^3.23.0",
  104. "rollup-plugin-glsl": "^1.3.0",
  105. "rollup-plugin-license": "^3.0.1",
  106. "rollup-plugin-postcss": "^4.0.2",
  107. "three": "https://github.com/repalash/three.js-modded/releases/download/v0.153.1006/package.tgz",
  108. "tslib": "^2.5.0",
  109. "typedoc": "^0.25.7",
  110. "typescript": "^5.3.3",
  111. "typescript-plugin-css-modules": "^5.0.1",
  112. "vite": "^5.3.5",
  113. "vite-plugin-dts": "^3.7.0",
  114. "vitepress": "^1.3.2",
  115. "vitepress-plugin-nprogress": "^0.0.4"
  116. },
  117. "dependencies": {
  118. "@types/three": "https://github.com/repalash/three-ts-types/releases/download/v0.153.1002/package.tgz",
  119. "@types/webxr": "^0.5.1",
  120. "@types/wicg-file-system-access": "^2020.9.5",
  121. "stats.js": "^0.17.0",
  122. "ts-browser-helpers": "^0.14.2",
  123. "uiconfig.js": "^0.0.12"
  124. },
  125. "//": {
  126. "dependencies": {
  127. "uiconfig.js": "^0.0.12",
  128. "ts-browser-helpers": "^0.14.2",
  129. "three": "https://github.com/repalash/three.js-modded/releases/download/v0.153.1006/package.tgz",
  130. "three-f": "https://github.com/repalash/three.js-modded/archive/refs/tags/v0.153.1006.tar.gz",
  131. "@types/three": "https://github.com/repalash/three-ts-types/releases/download/v0.153.1002/package.tgz",
  132. "@types/three-f": "https://github.com/repalash/three-ts-types/archive/refs/tags/v0.153.1002.tar.gz",
  133. "@types/three-pkg": "https://gitpkg.now.sh/repalash/three-ts-types/types/three?modded_three"
  134. },
  135. "local_dependencies": {
  136. "uiconfig.js": "^file:./../uiconfig",
  137. "ts-browser-helpers": "file:./../ts-browser-helpers",
  138. "three": "file:./../three.js",
  139. "@types/three": "file:./../three-ts-types/types/three"
  140. }
  141. },
  142. "optionalDependencies": {
  143. "win-node-env": "^0.6.1"
  144. },
  145. "browserslist": [
  146. "defaults"
  147. ],
  148. "sideEffects": false
  149. }