skinview3d/package.json

60 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2017-10-01 14:00:45 +02:00
{
"name": "skinview3d",
2022-02-03 16:12:59 +01:00
"version": "2.2.1",
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",
2020-07-13 07:24:52 +02:00
"type": "module",
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",
"dev:watch:modules": "tsc -w --preserveWatchOutput --declaration --sourceMap --outDir libs -p .",
"dev:watch:bundles": "rollup -w --no-watch.clearScreen -c",
"dev:serve": "ws",
"dev": "npm-run-all --parallel dev:watch:bundles dev:serve",
"prepublishOnly": "npm run clean && npm run build"
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": {
2022-01-07 22:36:58 +01:00
"@types/three": "^0.136.1",
"skinview-utils": "^0.7.0",
2022-01-07 22:36:58 +01:00
"three": "^0.136.0"
2017-10-01 14:00:45 +02:00
},
"devDependencies": {
2022-01-07 22:36:58 +01:00
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@yushijinhun/three-minifier-rollup": "^0.3.1",
"eslint": "^8.6.0",
2021-09-07 11:29:37 +02:00
"local-web-server": "^5.1.1",
2020-01-22 18:57:41 +01:00
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
2022-01-07 22:36:58 +01:00
"rollup": "^2.63.0",
"rollup-plugin-terser": "^7.0.2",
2022-01-07 22:36:58 +01:00
"typescript": "^4.5.4"
2017-10-01 14:00:45 +02:00
}
}