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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@threepipe/plugin-assimpjs",
  3. "description": "Assimp.js Plugin for ThreePipe",
  4. "version": "0.1.0",
  5. "devDependencies": {
  6. },
  7. "dependencies": {
  8. "threepipe": "file:./../../src/",
  9. "assimpjs": "^0.0.10"
  10. },
  11. "exports": {
  12. ".": {
  13. "types": "./dist/index.d.ts",
  14. "import": "./dist/index.mjs",
  15. "require": "./dist/index.js"
  16. },
  17. "./dist/": {
  18. "import": "./dist/",
  19. "require": "./dist/"
  20. }
  21. },
  22. "type": "module",
  23. "main": "dist/index.js",
  24. "module": "dist/index.mjs",
  25. "types": "dist/index.d.ts",
  26. "files": [
  27. "dist",
  28. "src"
  29. ],
  30. "scripts": {
  31. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  32. "new:publish": "git diff --exit-code --name-only HEAD * && npm run prepare && clean-package && npm publish --access public && clean-package restore && git tag $npm_package_name-$npm_package_version",
  33. "prepare": "npm run build && npm run docs",
  34. "build": "rimraf dist && vite build",
  35. "dev": "NODE_ENV=development vite build --watch",
  36. "docs": "rimraf docs && npx typedoc"
  37. },
  38. "author": "repalash <palash@shaders.app>",
  39. "license": "Apache-2.0",
  40. "keywords": [
  41. "three",
  42. "three.js",
  43. "threepipe",
  44. "vite",
  45. "plugin"
  46. ],
  47. "bugs": {
  48. "url": "https://github.com/repalash/threepipe/issues"
  49. },
  50. "homepage": "https://github.com/repalash/threepipe#readme",
  51. "repository": {
  52. "type": "git",
  53. "url": "git://github.com/repalash/threepipe.git",
  54. "directory": "plugins/plugin-template-vite"
  55. },
  56. "clean-package": {
  57. "remove": [
  58. "clean-package",
  59. "scripts",
  60. "devDependencies",
  61. "//",
  62. "markdown-to-html"
  63. ],
  64. "replace": {
  65. "dependencies": {},
  66. "peerDependencies": {
  67. "threepipe": "^0.0.46"
  68. }
  69. }
  70. }
  71. }