Merge branch 'master' of github.com:bs-community/skinview3d into add-storybook

This commit is contained in:
Sean Boult 2020-07-13 14:25:48 -05:00
commit c44c28236c
7 changed files with 12155 additions and 12127 deletions

1
.gitignore vendored
View File

@ -62,4 +62,3 @@ libs/
_ignore/ _ignore/
.DS_Store .DS_Store
.rpt2_cache .rpt2_cache
dist/

View File

@ -1,3 +1,3 @@
{ {
"type": "commonjs" "type": "commonjs"
} }

View File

@ -1,11 +1,3 @@
# Copyright Infomration # Example textures
Assets in this directory are copyrighted by their original author(s), and are **OUTSIDE** the scope of skinview3d's license.
| Texture | Owner | These files are intended for demo use. If you are the copyright owner and disagree with our use, please submit an issue and we will remove the related files.
| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------- |
| Hacksore.png | @Hacksore |
| 1_8_texturemap_redux.png | Mojang Studios |
| cape.png | Mojang Studios |
| mojang_cape.png | Mojang Studios |
| hatsune_miku.png | [xilefian](http://www.minecraftforum.net/forums/mapping-and-modding/skins/2646900-hatsune-miku-skin-1-9-transparency-layers) |
| hd_cape.png | TBD |
| ironman_hd.png | TBD |

BIN
examples/textures/haka.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

24237
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "skinview3d", "name": "skinview3d",
"version": "2.0.0-alpha.5", "version": "2.0.0-alpha.6",
"description": "Three.js powered Minecraft skin viewer", "description": "Three.js powered Minecraft skin viewer",
"main": "libs/skinview3d.js", "main": "libs/skinview3d.js",
"type": "module", "type": "module",
@ -11,10 +11,10 @@
"build": "npm run build:modules && npm run build:bundles", "build": "npm run build:modules && npm run build:bundles",
"test:lint": "eslint --ext .ts src", "test:lint": "eslint --ext .ts src",
"test": "npm run test:lint", "test": "npm run test:lint",
"dev:watch:modules": "tsc -w --declaration --sourceMap --outDir libs -p .", "dev:watch:modules": "tsc -w --preserveWatchOutput --declaration --sourceMap --outDir libs -p .",
"dev:watch:bundles": "rollup -w -c", "dev:watch:bundles": "rollup -w --no-watch.clearScreen -c",
"storybook": "start-storybook -s ./examples -p 6006", "dev:storybook": "start-storybook -s ./examples -p 6006",
"dev": "npm run storybook", "dev": "npm run dev:storybook",
"prepublishOnly": "npm run clean && npm run build" "prepublishOnly": "npm run clean && npm run build"
}, },
"repository": { "repository": {
@ -39,24 +39,24 @@
], ],
"dependencies": { "dependencies": {
"skinview-utils": "^0.5.6", "skinview-utils": "^0.5.6",
"three": "^0.117.1" "three": "^0.118.3"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.10.4", "@babel/core": "^7.10.4",
"@rollup/plugin-node-resolve": "^8.1.0", "@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-typescript": "^5.0.0", "@rollup/plugin-typescript": "^5.0.2",
"@storybook/addon-knobs": "^5.3.19", "@storybook/addon-knobs": "^5.3.19",
"@storybook/html": "^5.3.19", "@storybook/html": "^5.3.19",
"@typescript-eslint/eslint-plugin": "^3.4.0", "@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.4.0", "@typescript-eslint/parser": "^3.6.1",
"@yushijinhun/three-minifier-rollup": "^0.1.7", "@yushijinhun/three-minifier-rollup": "^0.1.7",
"babel-loader": "^8.1.0", "babel-loader": "^8.1.0",
"eslint": "^7.3.1", "eslint": "^7.4.0",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rollup": "^2.18.0", "rollup": "^2.21.0",
"rollup-plugin-terser": "^6.1.0", "rollup-plugin-terser": "^6.1.0",
"ts-loader": "^8.0.0", "typescript": "^3.9.6",
"typescript": "^3.9.5" "ts-loader": "^8.0.0"
} }
} }