forked from posecode-dev/posecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.09 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
{
"name": "posecode-render",
"version": "0.4.2",
"description": "Render a Posecode IR as an animated 3D human figure (skinned character or procedural mannequin) with Three.js.",
"license": "AGPL-3.0-only",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"dependencies": {
"three": "^0.185.1"
},
"peerDependencies": {
"posecode-parser": ">=0.2.2 <0.5.0"
},
"devDependencies": {
"@types/three": "^0.185.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posecode-dev/posecode.git",
"directory": "packages/posecode-render"
},
"keywords": [
"posecode",
"three.js",
"3d",
"animation",
"kinematics",
"forward-kinematics",
"llm"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE",
"NOTICE"
],
"publishConfig": {
"access": "public"
}
}