threepipe
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

package.json 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "threepipe-plugin-template-vite",
  3. "description": "Sample Threepipe plugin using vite",
  4. "version": "0.1.0",
  5. "devDependencies": {
  6. },
  7. "dependencies": {
  8. "threepipe": "file:./../../src/",
  9. "@threepipe/plugin-tweakpane": "file:./../tweakpane/src/"
  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.26",
  68. "@threepipe/plugin-tweakpane": "^0.2.0"
  69. }
  70. }
  71. }
  72. }