-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathpackage.json
67 lines (67 loc) · 2.1 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
62
63
64
65
66
67
{
"name": "skinview3d",
"version": "3.1.0",
"description": "Three.js powered Minecraft skin viewer",
"main": "libs/skinview3d.js",
"type": "module",
"scripts": {
"clean": "rimraf libs bundles",
"build:modules": "tsc -p .",
"build:bundles": "rollup -c --configPlugin=swc3",
"build:docs": "typedoc src/viewer.ts",
"build:preview": "vite build",
"build": "npm-run-all --parallel build:modules build:bundles build:preview",
"format": "prettier src examples --write",
"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 --configPlugin=swc3",
"dev": "vite",
"preview": "vite preview",
"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.156.0",
"skinview-utils": "^0.7.1",
"three": "^0.156.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@swc/core": "^1.3.53",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@yushijinhun/three-minifier-rollup": "^0.4.0",
"eslint": "^8.39.0",
"eslint-plugin-tsdoc": "^0.2.17",
"local-web-server": "^5.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"rimraf": "^3.0.2",
"rollup": "^3.20.7",
"rollup-plugin-swc3": "^0.8.1",
"typedoc": "^0.25.7",
"typescript": "^5.0.4",
"vite": "^5.4.7"
}
}