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.

package.json 5.4KB

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