-
Notifications
You must be signed in to change notification settings - Fork 662
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.1 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
{
"name": "gpu.js",
"version": "2.19.9",
"description": "GPU Accelerated JavaScript",
"engines": {
"node": ">=8.0.0"
},
"main": "./src/index.js",
"files": [
"src",
"dist"
],
"unpkg": "./dist/gpu-browser.js",
"jsdelivr": "./dist/gpu-browser.js",
"browser": "./dist/gpu-browser.js",
"directories": {
"doc": "doc",
"test": "test"
},
"dependencies": {
"acorn": "8.14.0",
"gl": "8.1.6",
"gpu-mock.js": "^1.4.1",
"webgpu": "0.2.9"
},
"devDependencies": {
"@playwright/test": "^1.62.0",
"benchmark": "2.1.4",
"browserstack-local": "^1.5.6",
"c8": "10.1.2",
"decomment": "^0.9.5",
"js-beautify": "^1.15.4",
"qunit": "2.22.0",
"read-dir-deep": "8.0.0",
"rolldown": "^1.2.0",
"selenium-webdriver": "^4.27.0",
"sinon": "18.0.0",
"terser": "^5.49.0"
},
"scripts": {
"test": "qunit test/issues test/internal test/features",
"test:browserstack": "node test/browserstack/run.js --browsers=real-devices",
"test:browserstack:desktop": "node test/browserstack/run.js --browsers=desktop",
"test:browserstack:qunit": "node test/browserstack/run.js --browsers=desktop --suite=qunit",
"coverage": "c8 qunit test/issues test/internal test/features",
"make": "node scripts/make.js",
"build": "node scripts/build.js",
"docs": "npx --yes doxdox@3 ./src --layout bootstrap --output index.html",
"minify": "node scripts/minify.js",
"beautify": "node scripts/beautify.js",
"build-tests": "node scripts/build-tests.js",
"dev": "node scripts/dev.js",
"test:browser": "playwright test --project=chromium",
"test:browser:all": "playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpujs/gpu.js.git"
},
"keywords": [
"gpgpu",
"webgl"
],
"author": "The gpu.js Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/gpujs/gpu.js/issues"
},
"homepage": "http://gpu.rocks/",
"typings": "./src/index.d.ts",
"overrides": {
"gl": {
"node-gyp": "^11.4.2"
},
"immutable": "^4.3.9",
"minimatch@^9.0.1": "^10.2.5"
}
}