-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
72 lines (72 loc) · 1.79 KB
/
package.json
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
{
"name": "skia-canvas",
"version": "1.0.2",
"description": "A GPU-accelerated Canvas Graphics API for Node",
"author": "Christian Swinehart <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/samizdatco/skia-canvas.git"
},
"bugs": {
"url": "https://github.com/samizdatco/skia-canvas/issues"
},
"homepage": "https://github.com/samizdatco/skia-canvas#readme",
"main": "lib",
"browser": {
"lib": "./lib/browser.js",
"path": "path-browserify"
},
"scripts": {
"build": "cargo-cp-artifact -nc lib/v6/index.node -- cargo build --message-format=json-render-diagnostics",
"install": "node-pre-gyp install || npm run build -- --release",
"package": "node-pre-gyp package",
"upload": "gh release upload v$npm_package_version build/stage/v$npm_package_version/*",
"test": "jest"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.9",
"cargo-cp-artifact": "^0.1",
"glob": "^8.0.3",
"path-browserify": "^1.0.1",
"simple-get": "^4.0.1",
"string-split-by": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.19.59",
"express": "^4.18.1",
"jest": "^28.1.3",
"lodash": "^4.17.21",
"nodemon": "^2.0.19",
"tmp": "^0.2.1"
},
"files": [
"lib"
],
"binary": {
"module_name": "index",
"module_path": "./lib/v6",
"remote_path": "./v{version}",
"package_name": "{platform}-{arch}-{libc}.tar.gz",
"host": "https://github.com/samizdatco/skia-canvas/releases/download"
},
"keywords": [
"canvas",
"gpu",
"skia",
"offscreen",
"headless",
"graphic",
"graphics",
"image",
"images",
"compositing",
"render",
"vulkan",
"metal",
"pdf",
"svg",
"rust"
]
}