skinview3d/package.json

64 lines
2.1 KiB
JSON
Raw Normal View History

2017-10-01 14:00:45 +02:00
{
"name": "skinview3d",
2020-06-24 04:29:36 +02:00
"version": "2.0.0-alpha.5",
2017-10-01 14:00:45 +02:00
"description": "Three.js powered Minecraft skin viewer",
2020-01-31 01:34:55 +01:00
"main": "libs/skinview3d.js",
2017-10-01 14:00:45 +02:00
"scripts": {
2020-01-31 01:39:58 +01:00
"clean": "rimraf libs bundles",
"build:modules": "tsc --declaration --sourceMap --outDir libs -p .",
2020-01-31 01:39:58 +01:00
"build:bundles": "rollup -c",
"build": "npm run build:modules && npm run build:bundles",
2020-01-23 18:28:24 +01:00
"test:lint": "eslint --ext .ts src",
"test": "npm run test:lint",
2020-06-14 09:45:36 +02:00
"dev:watch:modules": "tsc -w --declaration --sourceMap --outDir libs -p .",
2020-01-31 01:39:58 +01:00
"dev:watch:bundles": "rollup -w -c",
2020-01-23 18:28:24 +01:00
"dev:serve": "ws",
"storybook": "start-storybook -s ./public -p 6006",
2020-01-31 01:39:58 +01:00
"dev": "npm-run-all --parallel dev:watch:modules dev:watch:bundles dev:serve",
"prepublishOnly": "npm run clean && npm run build",
"build-storybook": "build-storybook"
2017-10-01 14:00:45 +02:00
},
"repository": {
"type": "git",
2018-06-30 17:32:08 +02:00
"url": "git+https://github.com/bs-community/skinview3d.git"
2017-10-01 14:00:45 +02:00
},
2018-02-10 07:05:07 +01:00
"author": "Haowei Wen <yushijinhun@gmail.com> (https://github.com/yushijinhun)",
"contributors": [
"Sean Boult <hacksore@mcskinsearch.com> (https://github.com/Hacksore)",
"Pig Fang <g-plane@hotmail.com> (https://github.com/g-plane)",
2018-02-12 08:52:48 +01:00
"printempw <h@prinzeugen.net> (https://github.com/printempw)",
2018-02-10 07:05:07 +01:00
"Kent Rasmussen <hyprkookeez@gmail.com> (https://github.com/earthiverse)"
],
"license": "MIT",
2017-10-01 14:00:45 +02:00
"bugs": {
2018-06-30 17:32:08 +02:00
"url": "https://github.com/bs-community/skinview3d/issues"
2017-10-01 14:00:45 +02:00
},
2018-06-30 17:32:08 +02:00
"homepage": "https://github.com/bs-community/skinview3d",
"files": [
2020-01-31 01:34:55 +01:00
"libs",
2020-01-31 01:39:58 +01:00
"bundles"
],
2017-10-01 14:00:45 +02:00
"dependencies": {
"@storybook/addon-knobs": "^5.3.19",
"skinview-utils": "^0.5.5",
"three": "^0.117.1"
2017-10-01 14:00:45 +02:00
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-typescript": "^5.0.0",
"@storybook/html": "^5.3.19",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@yushijinhun/three-minifier-rollup": "^0.1.7",
"babel-loader": "^8.1.0",
"eslint": "^7.3.1",
2020-06-17 07:31:30 +02:00
"local-web-server": "^4.2.1",
2020-01-22 18:57:41 +01:00
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.18.0",
"rollup-plugin-terser": "^6.1.0",
2020-06-17 07:31:30 +02:00
"typescript": "^3.9.5"
2017-10-01 14:00:45 +02:00
}
}