-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.65 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
{
"name": "fbx-animation-controls",
"version": "2.0.3",
"description": "The easiest way to control FBX animations with Three.js. Time management, animation control, attaching different meshes, and more.",
"repository": {
"type": "git",
"url": "https://github.com/itsdorosh/fbx-animation-controls.git"
},
"homepage": "https://github.com/itsdorosh/fbx-animation-controls#readme",
"bugs": {
"url": "https://github.com/itsdorosh/fbx-animation-controls/issues"
},
"main": "src/index.js",
"types": "src/index.d.ts",
"type": "module",
"files": [
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "echo 'No build step required for this library'",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"format:lint": "npm run format && npm run lint",
"check": "npm run lint && npm run format:check",
"check:all": "npm run check && npm test"
},
"keywords": [
"three",
"threejs",
"fbx",
"animation",
"controls",
"3d",
"webgl",
"animation-controls",
"animation-mixer"
],
"author": "itsdorosh",
"license": "MIT",
"dependencies": {
"@types/three": "^0.180.0",
"three": "^0.180.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@eslint/js": "^9.38.0",
"@jest/globals": "^30.2.0",
"babel-jest": "^30.2.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^27.0.1",
"prettier": "^3.6.2"
}
}