forked from bs-community/skinview3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "skinview3d",
"version": "2.0.0-alpha.7",
"description": "Three.js powered Minecraft skin viewer",
"main": "libs/skinview3d.js",
"type": "module",
"scripts": {
"clean": "rimraf libs bundles",
"build:modules": "tsc --declaration --sourceMap --outDir libs -p .",
"build:bundles": "rollup -c",
"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 --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:modules dev:watch:bundles dev:serve",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bs-community/skinview3d.git"
},
"author": "Haowei Wen <[email protected]> (https://github.com/yushijinhun)",
"contributors": [
"Sean Boult <[email protected]> (https://github.com/Hacksore)",
"Pig Fang <[email protected]> (https://github.com/g-plane)",
"printempw <[email protected]> (https://github.com/printempw)",
"Kent Rasmussen <[email protected]> (https://github.com/earthiverse)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bs-community/skinview3d/issues"
},
"homepage": "https://github.com/bs-community/skinview3d",
"files": [
"libs",
"bundles"
],
"dependencies": {
"skinview-utils": "^0.5.7",
"three": "^0.119.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"@yushijinhun/three-minifier-rollup": "^0.1.7",
"eslint": "^7.7.0",
"local-web-server": "^4.2.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.26.3",
"rollup-plugin-terser": "^7.0.0",
"typescript": "^3.9.7"
}
}