-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update package.json with correct name, description, and reposito…
…ry format
- Loading branch information
1 parent
abf77de
commit f3e2dcd
Showing
1 changed file
with
14 additions
and
4 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,6 +1,6 @@ | ||
{ | ||
"name": "threejs-postprocess", | ||
"discription": "Collection of post process modules for three.js", | ||
"name": "@masatomakino/threejs-postprocess", | ||
"description": "Collection of post process module for three.js", | ||
"version": "0.3.0", | ||
"type": "module", | ||
"exports": { | ||
|
@@ -13,7 +13,10 @@ | |
"files": [ | ||
"esm" | ||
], | ||
"repository": "https://[email protected]/MasatoMakino/threejs-postprocess.git", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://[email protected]/MasatoMakino/threejs-postprocess.git" | ||
}, | ||
"author": "MasatoMakino <[email protected]>", | ||
"license": "MIT", | ||
"peerDependencies": { | ||
|
@@ -51,5 +54,12 @@ | |
}, | ||
"lint-staged": { | ||
"*.{js,ts,css,md}": "prettier --write" | ||
} | ||
}, | ||
"directories": { | ||
"doc": "docs" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/MasatoMakino/threejs-postprocess/issues" | ||
}, | ||
"homepage": "https://github.com/MasatoMakino/threejs-postprocess#readme" | ||
} |