-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.05 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
66
67
68
69
{
"name": "redcube.js",
"version": "5.1.0",
"description": "JS renderer based on GLTF to WebGPU or WebGL backends.",
"main": "dist/redcube",
"types": "./dist/types/src/redcube.d.ts",
"exports": {
".": {
"types": "./dist/types/src/redcube.d.ts",
"default": "./dist/redcube.js"
},
"./webgpu": {
"types": "./dist/types/src/redcube.webgpu.d.ts",
"default": "./dist/redcube.webgpu.js"
},
"./node": {
"types": "./dist/types/src/redcube.node.d.ts",
"default": "./dist/redcube.node.cjs"
},
"./package.json": "./package.json"
},
"type": "module",
"scripts": {
"build": "node esbuild.config.js && tsc -p tsconfig.build.json",
"serve": "node esbuild.config.js --serve",
"lint": "tsc && oxlint --fix ./src/ && prettier --write \"src/**/*.ts\"",
"lint:check": "tsc --noEmit && oxlint ./src/ && prettier --check \"src/**/*.ts\"",
"test": "vitest run",
"test:e2e": "playwright test"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"@webgpu/types": "^0.1.71",
"esbuild": "^0.28.1",
"fs-extra": "^11.3.6",
"oxlint": "^1.75.0",
"pixelmatch": "^7.2.0",
"playwright": "^1.61.1",
"pngjs": "^7.0.0",
"prettier": "^3.9.6",
"source-map-support": "^0.5.21",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"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"
}
}