forked from GNOME/gtk
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.28 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
{
"name": "@superstruct/gtk.wasm",
"version": "1.0.0",
"type": "module",
"description": "GTK WebGPU WASM implementation with hardware-accelerated rendering",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "cd examples && make all",
"test": "playwright test",
"test:webgpu": "playwright test --project=gtk-webgpu-chrome",
"test:canvas": "playwright test --project=gtk-canvas-fallback",
"test:performance": "playwright test --project=gtk-webgpu-performance",
"serve": "cd examples && python3 -m http.server 8765",
"dev": "npm run serve"
},
"files": [
"dist/",
"examples/",
"gsk/",
"test/"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./wasm": {
"import": "./dist/wasm-loader.js"
}
},
"devDependencies": {
"@playwright/test": "^1.40.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/superstruct/superstruct.git",
"directory": "gtk.wasm"
},
"keywords": [
"gtk",
"webgpu",
"wasm",
"webassembly",
"ui",
"hardware-acceleration",
"graphics"
],
"author": "Superstruct Ltd",
"license": "LGPL-2.1-or-later"
}