-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 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
{
"name": "redcube.js",
"version": "5.0.5",
"description": "JS renderer based on GLTF to WebGPU or WebGL backends.",
"main": "dist/redcube",
"type": "module",
"scripts": {
"build": "node esbuild.config.js",
"serve": "node esbuild.config.js --serve",
"lint": "eslint --fix --ext .ts ./src/ || true && prettier --write \"src/**/*.ts\"",
"test": "playwright test"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.12.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@webgpu/types": "^0.1.69",
"esbuild": "^0.27.4",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^9.39.4",
"eslint-plugin-unused-imports": "^4.4.1",
"fs-extra": "^11.3.4",
"jest": "^30.3.0",
"pixelmatch": "^7.1.0",
"playwright": "^1.58.2",
"pngjs": "^7.0.0",
"prettier": "^3.8.1",
"source-map-support": "^0.5.21",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Reon90/redcube.git"
},
"keywords": [
"webgl",
"webgpu",
"opengl",
"gltf",
"Khronos group",
"3D"
],
"author": "Artem Kunets",
"license": "MIT",
"bugs": {
"url": "https://github.com/Reon90/redcube/issues"
},
"homepage": "https://github.com/Reon90/redcube",
"dependencies": {
"draco3d": "^1.5.7",
"esbuild-copy-files-plugin": "^1.2.1",
"parse-hdr": "^1.0.0"
}
}