-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.48 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.48 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
{
"name": "skia-canvas",
"version": "3.0.8",
"description": "A multi-threaded, GPU-accelerated, Canvas API for Node",
"author": "Christian Swinehart <drafting@samizdat.co>",
"license": "MIT",
"homepage": "https://skia-canvas.org",
"repository": {
"type": "git",
"url": "git+https://github.com/samizdatco/skia-canvas.git"
},
"bugs": {
"url": "https://github.com/samizdatco/skia-canvas/issues"
},
"main": "./lib/index.js",
"exports": {
"node": {
"import": "./lib/index.mjs",
"require": "./lib/index.js"
},
"browser": "./lib/browser.js",
"types": "./lib/index.d.ts"
},
"scripts": {
"build": "node lib/prebuild.mjs compile",
"install": "node lib/prebuild.mjs download --or-compile",
"upload": "node lib/prebuild.mjs upload",
"test": "node --test"
},
"dependencies": {
"detect-libc": "^2.1.1",
"follow-redirects": "^1.15.11",
"https-proxy-agent": "^7.0.6",
"string-split-by": "^1.0.0"
},
"devDependencies": {
"@hono/node-server": "^1.19.4",
"@types/node": "^24.5.2",
"cargo-cp-artifact": "^0.1",
"hono": "^4.9.8",
"nock": "^14.0.10",
"tmp": "^0.2.5"
},
"files": [
"lib/*js",
"lib/*ts",
"lib/classes/*js",
"lib/fonts"
],
"keywords": [
"canvas",
"gpu",
"skia",
"offscreen",
"headless",
"graphic",
"graphics",
"image",
"images",
"compositing",
"render",
"vulkan",
"metal",
"pdf",
"svg",
"rust"
]
}