-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 810 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 810 Bytes
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
{
"name": "charactercontroller",
"version": "3.0.2",
"description": "A first person character controller for the Three.js graphics library",
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"format": "prettier --write src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ma1ted/charactercontroller.git"
},
"keywords": [
"threejs",
"fps",
"controller"
],
"author": "malted",
"license": "MIT",
"bugs": {
"url": "https://github.com/ma1ted/charactercontroller/issues"
},
"homepage": "https://github.com/ma1ted/charactercontroller#readme",
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.2"
},
"dependencies": {
"three": "^0.141.0"
},
"publishConfig": {
"registry": "https://registry-url"
}
}