-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.87 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.87 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@pmndrs/detect-gpu",
"version": "6.0.3",
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=24"
},
"description": "Classify GPU's based on their benchmark score in order to provide an adaptive experience.",
"author": "Tim van Scherpenzeel",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/pmndrs/detect-gpu#readme",
"bugs": {
"url": "https://github.com/pmndrs/detect-gpu/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pmndrs/detect-gpu.git"
},
"publishConfig": {
"access": "public"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"files": [
"dist"
],
"keywords": [
"gpu",
"detect",
"webgl",
"webgl2",
"three.js",
"babylonjs",
"three",
"babylon",
"3d",
"typescript",
"javascript"
],
"scripts": {
"lint": "oxlint --type-aware --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsdown",
"dev": "pnpm run --parallel /^dev:/",
"dev:build": "tsdown --watch",
"dev:serve": "echo 'open http://localhost:8000/local.html' && python3 -m http.server 8000",
"update-benchmarks": "node ./scripts/update_benchmarks.ts"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/tar": "^7.0.87",
"@vitest/coverage-v8": "^4.1.4",
"csv-parse": "^6.2.1",
"jsdom": "^29.0.2",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"oxlint-tsgolint": "^0.21.1",
"tar": "^7.0.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}