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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@threepipe/plugin-blend-importer",
  3. "description": "Basic importer for .blend file",
  4. "version": "0.0.2",
  5. "devDependencies": {
  6. },
  7. "dependencies": {
  8. "threepipe": "file:./../../src/"
  9. },
  10. "clean-package": {
  11. "remove": [
  12. "clean-package",
  13. "scripts",
  14. "devDependencies"
  15. ],
  16. "replace": {
  17. "dependencies": {},
  18. "peerDependencies": {
  19. "threepipe": "^0.0.13"
  20. }
  21. }
  22. },
  23. "type": "module",
  24. "main": "dist/index.js",
  25. "module": "dist/index.mjs",
  26. "types": "dist/index.d.ts",
  27. "files": [
  28. "dist",
  29. "src"
  30. ],
  31. "scripts": {
  32. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  33. "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
  34. "prepare": "npm run build && npm run docs",
  35. "build": "rimraf dist && vite build",
  36. "dev": "NODE_ENV=development vite build --watch",
  37. "docs": "rimraf docs && npx typedoc"
  38. },
  39. "author": "repalash <palash@shaders.app>",
  40. "license": "Apache-2.0",
  41. "keywords": [
  42. "three.js",
  43. "threepipe",
  44. "importer",
  45. "blend",
  46. "blender",
  47. "plugin"
  48. ],
  49. "bugs": {
  50. "url": "https://github.com/repalash/threepipe/issues"
  51. },
  52. "homepage": "https://github.com/repalash/threepipe#readme",
  53. "repository": {
  54. "type": "git",
  55. "url": "git://github.com/repalash/threepipe.git",
  56. "directory": "plugins/blend-importer"
  57. }
  58. }