forked from bs-community/skinview3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.97 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
59
60
61
{
"name": "skinview3d",
"version": "3.0.0-alpha.1",
"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: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",
"assets"
],
"dependencies": {
"@types/three": "^0.142.0",
"skinview-utils": "^0.7.0",
"three": "^0.142.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@yushijinhun/three-minifier-rollup": "^0.4.0",
"eslint": "^8.20.0",
"eslint-plugin-tsdoc": "^0.2.16",
"local-web-server": "^5.2.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.7.4"
}
}