-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "@depasquale/three-stats-mesh",
"version": "0.0.15",
"description": "Shows the Stats module as a mesh in a Three.js scene to monitor performance",
"author": "Anthony DePasquale (anthony@depasquale.org)",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/DePasqualeOrg/three-stats-mesh"
},
"license": "MIT",
"main": "build/three-stats-mesh.js",
"files": [
"README.md",
"LICENSE.md",
"package.json",
"src",
"build",
"example"
],
"scripts": {
"build": "tsc",
"example": "node scripts/webserver.js"
},
"dependencies": {
"@depasquale/three-stats-mesh": "^0.0.14",
"three": "^0.158.0"
},
"devDependencies": {
"@depasquale/eslint-config-typescript": "^0.0.12",
"@depasquale/three-wizard": "^0.0.13",
"@types/three": "^0.158.1",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.0",
"express": "^4.18.2",
"typescript": "^5.2.2"
}
}