threepipe
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

package.json 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. {
  2. "name": "threepipe",
  3. "version": "0.0.1",
  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": "src/index.ts",
  6. "module": "dist/index.mjs",
  7. "types": "src/index.ts",
  8. "sources": "src/index.ts",
  9. "type": "module",
  10. "scripts": {
  11. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  12. "new:publish": "npm run prepare && clean-package && npm publish && clean-package restore",
  13. "build": "rimraf dist ; NODE_ENV=production rollup -c",
  14. "dev": "rollup -c -w",
  15. "build-examples": "tsc --project examples/tsconfig.build.json",
  16. "dev-examples": "tsc --project examples/tsconfig.build.json -w",
  17. "serve-docs": "ws -d docs -p 8080",
  18. "serve": "ws -d . -p 8000",
  19. "docs": "npx typedoc",
  20. "prepare": "npm run build && npm run build-examples && npm run docs"
  21. },
  22. "clean-package": {
  23. "remove": [
  24. "clean-package",
  25. "scripts",
  26. "devDependencies",
  27. "optionalDependencies",
  28. "//"
  29. ],
  30. "replace": {
  31. "main": "dist/index.min.js",
  32. "module": "dist/index.mjs",
  33. "browser": "dist/index.js",
  34. "types": "dist/index.d.ts"
  35. }
  36. },
  37. "files": [
  38. "dist",
  39. "src",
  40. "docs",
  41. "examples",
  42. "plugins",
  43. "tsconfig.json"
  44. ],
  45. "repository": {
  46. "type": "git",
  47. "url": "git://github.com/repalash/threepipe.git"
  48. },
  49. "keywords": [
  50. "3d",
  51. "three.js",
  52. "typescript",
  53. "javascipt",
  54. "browser",
  55. "esm",
  56. "rendering",
  57. "viewer",
  58. "webgl",
  59. "webgi",
  60. "canvas"
  61. ],
  62. "author": "repalash <palash@shaders.app>",
  63. "license": "MIT",
  64. "bugs": {
  65. "url": "https://github.com/repalash/threepipe/issues"
  66. },
  67. "homepage": "https://github.com/repalash/threepipe#readme",
  68. "devDependencies": {
  69. "rimraf": "^5.0.1",
  70. "@rollup/plugin-commonjs": "^25.0.0",
  71. "@rollup/plugin-json": "^6.0.0",
  72. "@rollup/plugin-node-resolve": "^15.0.2",
  73. "@rollup/plugin-terser": "^0.4.1",
  74. "@rollup/plugin-typescript": "^11.1.1",
  75. "@types/stats.js": "^0.17.0",
  76. "@typescript-eslint/eslint-plugin": "^5.59.5",
  77. "@typescript-eslint/parser": "^5.59.5",
  78. "clean-package": "^2.2.0",
  79. "eslint": "^8.40.0",
  80. "eslint-import-resolver-typescript": "^3.5.5",
  81. "eslint-plugin-deprecation": "^1.4.1",
  82. "eslint-plugin-html": "^7.1.0",
  83. "eslint-plugin-import": "^2.27.5",
  84. "local-web-server": "^5.3.0",
  85. "rollup": "^3.21.7",
  86. "three": "https://github.com/repalash/three.js-modded/releases/download/v0.152.2005/package.tgz",
  87. "rollup-plugin-license": "^3.0.1",
  88. "ts-browser-helpers": "^0.4.0",
  89. "stats.js": "^0.17.0",
  90. "tslib": "^2.5.0",
  91. "typedoc": "^0.24.7",
  92. "typescript": "^5.0.4",
  93. "uiconfig.js": "^0.0.2",
  94. "typescript-plugin-css-modules": "^5.0.1",
  95. "rollup-plugin-postcss": "^4.0.2"
  96. },
  97. "dependencies": {
  98. "@types/three": "https://github.com/repalash/three-ts-types/releases/download/v0.152.0004/package.tgz",
  99. "@types/webxr": "^0.5.1",
  100. "@types/wicg-file-system-access": "^2020.9.5"
  101. },
  102. "//": {
  103. "dependencies": {
  104. "ts-browser-helpers": "^0.4.0",
  105. "three": "https://github.com/repalash/three.js-modded/releases/download/v0.152.2005/package.tgz",
  106. "three-f": "https://github.com/repalash/three.js-modded/archive/refs/tags/v0.152.2005.tar.gz",
  107. "@types/three": "https://github.com/repalash/three-ts-types/releases/download/v0.152.0004/package.tgz",
  108. "@types/three-f": "https://github.com/repalash/three-ts-types/archive/refs/tags/v0.152.0004.tar.gz",
  109. "@types/three-pkg": "https://gitpkg.now.sh/repalash/three-ts-types/types/three?modded_three"
  110. },
  111. "local_dependencies": {
  112. "ts-browser-helpers": "file:./../ts-browser-helpers",
  113. "three": "file:./../three.js",
  114. "@types/three": "file:./../three-ts-types/types/three"
  115. }
  116. },
  117. "optionalDependencies": {
  118. "win-node-env": "^0.6.1"
  119. },
  120. "browserslist": [
  121. "defaults"
  122. ]
  123. }