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 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@threepipe/plugin-svg-renderer",
  3. "description": "Plugins for SVG Rendering of 3d objects for Threepipe",
  4. "version": "0.2.1",
  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. "three": "file:./../../node_modules/three"
  15. },
  16. "dependencies": {
  17. "threepipe": "file:./../../src/"
  18. },
  19. "clean-package": {
  20. "remove": [
  21. "clean-package",
  22. "scripts",
  23. "devDependencies",
  24. "//",
  25. "markdown-to-html"
  26. ],
  27. "replace": {
  28. "dependencies": {},
  29. "peerDependencies": {
  30. "threepipe": "^0.0.30"
  31. }
  32. }
  33. },
  34. "type": "module",
  35. "main": "dist/index.js",
  36. "module": "dist/index.mjs",
  37. "types": "dist/index.d.ts",
  38. "files": [
  39. "dist",
  40. "src"
  41. ],
  42. "scripts": {
  43. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  44. "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
  45. "prepare": "npm run build && npm run docs",
  46. "build": "rimraf dist && vite build",
  47. "dev": "NODE_ENV=development vite build --watch",
  48. "docs": "rimraf docs && npx typedoc"
  49. },
  50. "author": "repalash <palash@shaders.app>",
  51. "license": "GPLV3",
  52. "keywords": [
  53. "three",
  54. "three.js",
  55. "threepipe",
  56. "svg",
  57. "rendering",
  58. "vector-graphics"
  59. ],
  60. "bugs": {
  61. "url": "https://github.com/repalash/threepipe/issues"
  62. },
  63. "homepage": "https://github.com/repalash/threepipe#readme",
  64. "repository": {
  65. "type": "git",
  66. "url": "git://github.com/repalash/threepipe.git",
  67. "directory": "plugins/svg-renderer"
  68. }
  69. }