threepipe
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

package.json 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@threepipe/plugin-svg-renderer",
  3. "description": "Plugins for SVG Rendering of 3d objects for Threepipe",
  4. "version": "0.1.0",
  5. "devDependencies": {
  6. "@svgdotjs/svg.js": "^3.2.0",
  7. "@svgdotjs/svg.topath.js": "^2.0.3",
  8. "arrangement-2d-js": "github:LokiResearch/arrangement-2d-js",
  9. "fast-triangle-triangle-intersection": "^1.0.7",
  10. "flatbush": "^4.4.0",
  11. "isect": "^3.0.2",
  12. "three-mesh-bvh": "^0.7.4",
  13. "xml-formatter": "^2.6.1"
  14. },
  15. "dependencies": {
  16. "threepipe": "file:./../../src/"
  17. },
  18. "clean-package": {
  19. "remove": [
  20. "clean-package",
  21. "scripts",
  22. "devDependencies",
  23. "//",
  24. "markdown-to-html"
  25. ],
  26. "replace": {
  27. "dependencies": {
  28. "threepipe": "^0.0.26"
  29. }
  30. }
  31. },
  32. "type": "module",
  33. "main": "dist/index.js",
  34. "module": "dist/index.mjs",
  35. "types": "dist/index.d.ts",
  36. "files": [
  37. "dist",
  38. "src"
  39. ],
  40. "scripts": {
  41. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  42. "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
  43. "prepare": "npm run build",
  44. "build": "rimraf dist && vite build",
  45. "dev": "NODE_ENV=development vite build --watch",
  46. "docs": "rimraf docs && npx typedoc"
  47. },
  48. "author": "repalash <palash@shaders.app>",
  49. "license": "GPLV3",
  50. "keywords": [
  51. "three",
  52. "three.js",
  53. "threepipe",
  54. "svg",
  55. "rendering",
  56. "vector-graphics"
  57. ],
  58. "bugs": {
  59. "url": "https://github.com/repalash/threepipe/issues"
  60. },
  61. "homepage": "https://github.com/repalash/threepipe#readme",
  62. "repository": {
  63. "type": "git",
  64. "url": "git://github.com/repalash/threepipe.git"
  65. }
  66. }