| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {
- "name": "@threepipe/plugin-tweakpane",
- "description": "Tweakpane UI Plugin for ThreePipe",
- "version": "0.1.6",
- "devDependencies": {
- "tweakpane-image-plugin": "https://github.com/repalash/tweakpane-image-plugin/releases/download/v1.1.404/package.tgz",
- "uiconfig-tweakpane": "^0.0.8"
- },
- "dependencies": {
- "threepipe": "file:./../../src/"
- },
- "type": "module",
- "main": "dist/index.js",
- "module": "dist/index.mjs",
- "types": "dist/index.d.ts",
- "source": "src/index.ts",
- "files": [
- "dist",
- "src"
- ],
- "scripts": {
- "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
- "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
- "prepare": "npm run build",
- "build": "rimraf dist && NODE_ENV=production rollup -c",
- "dev": "rollup -c -w",
- "docs": "rimraf docs && npx typedoc"
- },
- "author": "repalash <palash@shaders.app>",
- "license": "Apache-2.0",
- "keywords": [
- "three",
- "three.js",
- "tweakpane",
- "threepipe",
- "plugin"
- ],
- "bugs": {
- "url": "https://github.com/repalash/threepipe/issues"
- },
- "homepage": "https://github.com/repalash/threepipe#readme",
- "repository": {
- "type": "git",
- "url": "git://github.com/repalash/threepipe.git"
- },
- "clean-package": {
- "remove": [
- "clean-package",
- "scripts",
- "devDependencies",
- "//",
- "markdown-to-html"
- ],
- "replace": {
- "dependencies": {
- "threepipe": "^0.0.18"
- }
- }
- },
- "//": {
- "dependencies": {
- "tweakpane-image-plugin": "https://github.com/repalash/tweakpane-image-plugin/releases/download/v1.1.404/package.tgz",
- "uiconfig-tweakpane": "^0.0.8"
- },
- "local_dependencies": {
- "tweakpane-image-plugin": "file:./../tweakpane-image-plugin",
- "uiconfig-tweakpane": "^file:./../uiconfig-tweakpane"
- }
- }
- }
|