Merge branch 'master' of github.com:bs-community/skinview3d into add-storybook
This commit is contained in:
commit
c44c28236c
|
|
@ -62,4 +62,3 @@ libs/
|
|||
_ignore/
|
||||
.DS_Store
|
||||
.rpt2_cache
|
||||
dist/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"type": "commonjs"
|
||||
"type": "commonjs"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,3 @@
|
|||
# Copyright Infomration
|
||||
|
||||
| Texture | Owner |
|
||||
| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------- |
|
||||
| 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 |
|
||||
# Example textures
|
||||
Assets in this directory are copyrighted by their original author(s), and are **OUTSIDE** the scope of skinview3d's license.
|
||||
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.
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 1.9 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
File diff suppressed because it is too large
Load Diff
28
package.json
28
package.json
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "skinview3d",
|
||||
"version": "2.0.0-alpha.5",
|
||||
"version": "2.0.0-alpha.6",
|
||||
"description": "Three.js powered Minecraft skin viewer",
|
||||
"main": "libs/skinview3d.js",
|
||||
"type": "module",
|
||||
|
|
@ -11,10 +11,10 @@
|
|||
"build": "npm run build:modules && npm run build:bundles",
|
||||
"test:lint": "eslint --ext .ts src",
|
||||
"test": "npm run test:lint",
|
||||
"dev:watch:modules": "tsc -w --declaration --sourceMap --outDir libs -p .",
|
||||
"dev:watch:bundles": "rollup -w -c",
|
||||
"storybook": "start-storybook -s ./examples -p 6006",
|
||||
"dev": "npm run storybook",
|
||||
"dev:watch:modules": "tsc -w --preserveWatchOutput --declaration --sourceMap --outDir libs -p .",
|
||||
"dev:watch:bundles": "rollup -w --no-watch.clearScreen -c",
|
||||
"dev:storybook": "start-storybook -s ./examples -p 6006",
|
||||
"dev": "npm run dev:storybook",
|
||||
"prepublishOnly": "npm run clean && npm run build"
|
||||
},
|
||||
"repository": {
|
||||
|
|
@ -39,24 +39,24 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"skinview-utils": "^0.5.6",
|
||||
"three": "^0.117.1"
|
||||
"three": "^0.118.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.10.4",
|
||||
"@rollup/plugin-node-resolve": "^8.1.0",
|
||||
"@rollup/plugin-typescript": "^5.0.0",
|
||||
"@rollup/plugin-node-resolve": "^8.4.0",
|
||||
"@rollup/plugin-typescript": "^5.0.2",
|
||||
"@storybook/addon-knobs": "^5.3.19",
|
||||
"@storybook/html": "^5.3.19",
|
||||
"@typescript-eslint/eslint-plugin": "^3.4.0",
|
||||
"@typescript-eslint/parser": "^3.4.0",
|
||||
"@typescript-eslint/eslint-plugin": "^3.6.1",
|
||||
"@typescript-eslint/parser": "^3.6.1",
|
||||
"@yushijinhun/three-minifier-rollup": "^0.1.7",
|
||||
"babel-loader": "^8.1.0",
|
||||
"eslint": "^7.3.1",
|
||||
"eslint": "^7.4.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"rimraf": "^3.0.2",
|
||||
"rollup": "^2.18.0",
|
||||
"rollup": "^2.21.0",
|
||||
"rollup-plugin-terser": "^6.1.0",
|
||||
"ts-loader": "^8.0.0",
|
||||
"typescript": "^3.9.5"
|
||||
"typescript": "^3.9.6",
|
||||
"ts-loader": "^8.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue