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.1KB

2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
1 vuosi sitten
2 vuotta sitten
2 vuotta sitten
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. "clean-package": {
  12. "remove": [
  13. "clean-package",
  14. "scripts",
  15. "devDependencies",
  16. "//",
  17. "markdown-to-html"
  18. ],
  19. "replace": {
  20. "dependencies": {},
  21. "peerDependencies": {
  22. "threepipe": "^0.0.26",
  23. "@threepipe/plugin-tweakpane": "^0.2.0"
  24. }
  25. }
  26. },
  27. "exports": {
  28. ".": {
  29. "types": "./dist/index.d.ts",
  30. "import": "./dist/index.mjs",
  31. "require": "./dist/index.js"
  32. },
  33. "./dist/": {
  34. "import": "./dist/",
  35. "require": "./dist/"
  36. }
  37. },
  38. "type": "module",
  39. "main": "dist/index.js",
  40. "module": "dist/index.mjs",
  41. "types": "dist/index.d.ts",
  42. "files": [
  43. "dist",
  44. "src"
  45. ],
  46. "scripts": {
  47. "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
  48. "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",
  49. "prepare": "npm run build && npm run docs",
  50. "build": "rimraf dist && vite build",
  51. "dev": "NODE_ENV=development vite build --watch",
  52. "docs": "rimraf docs && npx typedoc"
  53. },
  54. "author": "repalash <palash@shaders.app>",
  55. "license": "Apache-2.0",
  56. "keywords": [
  57. "three",
  58. "three.js",
  59. "threepipe",
  60. "vite",
  61. "plugin"
  62. ],
  63. "bugs": {
  64. "url": "https://github.com/repalash/threepipe/issues"
  65. },
  66. "homepage": "https://github.com/repalash/threepipe#readme",
  67. "repository": {
  68. "type": "git",
  69. "url": "git://github.com/repalash/threepipe.git",
  70. "directory": "plugins/plugin-template-vite"
  71. }
  72. }