-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
47cdb58
commit 4d10c7e
Showing
33 changed files
with
1,793 additions
and
1,926 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
{ | ||
"name": "react-three-jolt-root", | ||
"private": true, | ||
"version": "0.0.0", | ||
"repository": "https://github.com/isaac-mason/react-three-jolt.git", | ||
"author": "Dennis Smolek", | ||
"contributors": [ | ||
"Dennis Smolek", | ||
"Isaac Mason <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"packageManager": "[email protected]", | ||
"workspaces": [ | ||
"packages/*", | ||
"apps/*" | ||
], | ||
"scripts": { | ||
"test": "yarn workspaces foreach -A -t run test", | ||
"build": "yarn workspaces foreach -A -t run build", | ||
"change": "yarn changeset", | ||
"publish": "yarn build && yarn test && changeset publish", | ||
"version": "yarn changeset version && yarn install --mode update-lockfile" | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "^2.26.2" | ||
} | ||
"name": "react-three-jolt-root", | ||
"private": true, | ||
"version": "0.0.0", | ||
"repository": "https://github.com/isaac-mason/react-three-jolt.git", | ||
"author": "Dennis Smolek", | ||
"contributors": [ | ||
"Dennis Smolek", | ||
"Isaac Mason <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"packageManager": "[email protected]", | ||
"workspaces": [ | ||
"packages/*", | ||
"apps/*" | ||
], | ||
"scripts": { | ||
"test": "yarn workspaces foreach -A -t run test", | ||
"build": "yarn workspaces foreach -A -t run build", | ||
"change": "yarn changeset", | ||
"publish": "yarn build && yarn test && changeset publish", | ||
"version": "yarn changeset version && yarn install --mode update-lockfile" | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "^2.26.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"printWidth": 100, | ||
"tabWidth": 4, | ||
"bracketSameLine": true | ||
} | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"printWidth": 100, | ||
"tabWidth": 4, | ||
"bracketSameLine": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,72 @@ | ||
{ | ||
"name": "@react-three/jolt-addons", | ||
"description": "Addons for @react-three/jolt", | ||
"keywords": [ | ||
"physics", | ||
"jolt-physics", | ||
"react-three-fiber", | ||
"react", | ||
"three" | ||
], | ||
"version": "0.0.1", | ||
"author": "Dennis Smolek", | ||
"contributors": [ | ||
"Dennis Smolek", | ||
"Isaac Mason <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"homepage": "https://github.com/pmndrs/react-three-jolt", | ||
"bugs": { | ||
"url": "https://github.com/pmndrs/react-three-jolt/issues" | ||
}, | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
"name": "@react-three/jolt-addons", | ||
"description": "Addons for @react-three/jolt", | ||
"keywords": [ | ||
"physics", | ||
"jolt-physics", | ||
"react-three-fiber", | ||
"react", | ||
"three" | ||
], | ||
"version": "0.0.1", | ||
"author": "Dennis Smolek", | ||
"contributors": [ | ||
"Dennis Smolek", | ||
"Isaac Mason <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"homepage": "https://github.com/pmndrs/react-three-jolt", | ||
"bugs": { | ||
"url": "https://github.com/pmndrs/react-three-jolt/issues" | ||
}, | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
} | ||
}, | ||
"files": [ | ||
"dist/**", | ||
"README.md", | ||
"LICENSE" | ||
], | ||
"scripts": { | ||
"test": "vitest run --coverage", | ||
"build": "tsc && rollup --config rollup.config.mjs", | ||
"format": "prettier --write ." | ||
}, | ||
"peerDependencies": { | ||
"@react-three/fiber": ">=8.9.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0" | ||
}, | ||
"dependencies": { | ||
"@react-three/jolt": "0.0.1" | ||
}, | ||
"devDependencies": { | ||
"@react-three/fiber": "8.16.1", | ||
"@react-three/test-renderer": "^8.2.1", | ||
"@rollup/plugin-commonjs": "^25.0.7", | ||
"@rollup/plugin-node-resolve": "^15.0.1", | ||
"@rollup/plugin-typescript": "^11.1.6", | ||
"@types/three": "^0.163.0", | ||
"@typescript-eslint/eslint-plugin": "^6.10.0", | ||
"@typescript-eslint/parser": "^7.5.0", | ||
"@vitest/coverage-v8": "^1.4.0", | ||
"eslint": "^9.0.0", | ||
"happy-dom": "^14.7.0", | ||
"prettier": "^3.1.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"rollup": "^4.14.0", | ||
"rollup-plugin-copy": "^3.5.0", | ||
"rollup-plugin-filesize": "^10.0.0", | ||
"three": "^0.163.0", | ||
"typescript": "^5.4.4", | ||
"vitest": "^1.5.0" | ||
} | ||
}, | ||
"files": [ | ||
"dist/**", | ||
"README.md", | ||
"LICENSE" | ||
], | ||
"scripts": { | ||
"test": "vitest run --coverage", | ||
"build": "tsc && rollup --config rollup.config.mjs" | ||
}, | ||
"peerDependencies": { | ||
"@react-three/fiber": ">=8.9.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0" | ||
}, | ||
"dependencies": { | ||
"@react-three/jolt": "0.0.1" | ||
}, | ||
"devDependencies": { | ||
"@react-three/fiber": "8.16.1", | ||
"@react-three/test-renderer": "^8.2.1", | ||
"@rollup/plugin-commonjs": "^25.0.7", | ||
"@rollup/plugin-node-resolve": "^15.0.1", | ||
"@rollup/plugin-typescript": "^11.1.6", | ||
"@types/three": "^0.163.0", | ||
"@typescript-eslint/eslint-plugin": "^6.10.0", | ||
"@typescript-eslint/parser": "^7.5.0", | ||
"@vitest/coverage-v8": "^1.4.0", | ||
"eslint": "^9.0.0", | ||
"happy-dom": "^14.7.0", | ||
"prettier": "^3.1.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"rollup": "^4.14.0", | ||
"rollup-plugin-copy": "^3.5.0", | ||
"rollup-plugin-filesize": "^10.0.0", | ||
"three": "^0.163.0", | ||
"typescript": "^5.4.4", | ||
"vitest": "^1.5.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ES2022", | ||
"useDefineForClassFields": true, | ||
"module": "ES2022", | ||
"lib": ["ES2022", "DOM"], | ||
"moduleResolution": "Bundler", | ||
"strict": true, | ||
"sourceMap": true, | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"esModuleInterop": true, | ||
"noEmit": true, | ||
"declaration": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noImplicitReturns": true, | ||
"skipLibCheck": true, | ||
"typeRoots": ["./types"], | ||
"baseUrl": "./", | ||
"rootDir": "./src", | ||
"allowSyntheticDefaultImports": true, | ||
"outDir": "./dist", | ||
"jsx": "react" | ||
}, | ||
"files": ["./src/index.ts"] | ||
"compilerOptions": { | ||
"target": "ES2022", | ||
"useDefineForClassFields": true, | ||
"module": "ES2022", | ||
"lib": ["ES2022", "DOM"], | ||
"moduleResolution": "Bundler", | ||
"strict": true, | ||
"sourceMap": true, | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"esModuleInterop": true, | ||
"noEmit": true, | ||
"declaration": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noImplicitReturns": true, | ||
"skipLibCheck": true, | ||
"typeRoots": ["./types"], | ||
"baseUrl": "./", | ||
"rootDir": "./src", | ||
"allowSyntheticDefaultImports": true, | ||
"outDir": "./dist", | ||
"jsx": "react" | ||
}, | ||
"files": ["./src/index.ts"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"printWidth": 100, | ||
"tabWidth": 4, | ||
"bracketSameLine": true | ||
} | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"printWidth": 100, | ||
"tabWidth": 4, | ||
"bracketSameLine": true | ||
} |
Oops, something went wrong.