forked from bs-community/skinview3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.4 KB
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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "skinview3d-node",
"version": "3.4.201",
"description": "Three.js powered Minecraft skin viewer for Node.js",
"main": "libs/skinview3d.cjs",
"type": "module",
"exports": {
"import": "./libs/skinview3d.mjs",
"require": "./libs/skinview3d.cjs",
"types": "./libs/skinview3d.d.ts"
},
"scripts": {
"clean": "rimraf libs bundles",
"build:bundles": "rollup -c --configPlugin=swc3",
"build:docs": "typedoc src/viewer.ts",
"build:preview": "vite build",
"build": "npm-run-all --parallel build:bundles build:preview",
"format": "prettier src examples eslint.config.js --write",
"test:lint": "eslint src examples eslint.config.js",
"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/ltxhhz/skinview3d-node.git"
},
"author": "ltxhhz <ltxhhz@gmail.com> (https://github.com/ltxhhz)",
"contributors": [
"Sean Boult <sean@boult.me> (https://github.com/Hacksore)",
"Pig Fang <g-plane@hotmail.com> (https://github.com/g-plane)",
"printempw <h@prinzeugen.net> (https://github.com/printempw)",
"Kent Rasmussen <hyprkookeez@gmail.com> (https://github.com/earthiverse)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ltxhhz/skinview3d-node/issues"
},
"homepage": "https://github.com/ltxhhz/skinview3d-node",
"files": [
"libs",
"bundles",
"assets"
],
"dependencies": {
"@types/three": "^0.156.0",
"pngjs": "^7.0.0",
"skia-canvas": "^3.0.8",
"skinview-utils": "^0.7.1",
"three": "^0.156.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^8.5.0",
"@swc/core": "^1.3.53",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@yushijinhun/three-minifier-rollup": "^0.4.0",
"eslint": "^9.26.0",
"eslint-plugin-tsdoc": "^0.2.17",
"gl": "^8.1.6",
"jszip": "^3.10.1",
"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",
"tslib": "^2.8.1",
"typedoc": "^0.25.7",
"typescript": "^5.0.4",
"vite": "^5.4.7"
}
}