UNPKG

1 kBJSONView Raw
1{
2 "name": "svg2canvas",
3 "version": "0.0.11",
4 "description": "Library to allow batching and rendering of SVGs onto the canvas EFFICIENTLY. Currently only compatible w/ simple geometry.",
5 "keywords": [
6 "svg",
7 "canvas",
8 "batch",
9 "fast",
10 "2d"
11 ],
12 "homepage": "https://github.com/OpenCircuits/svg2canvas#readme",
13 "bugs": "https://github.com/OpenCircuits/svg2canvas/issues",
14 "license": "GPL-3.0",
15 "author": "Leon Montealegre <leonm99@gmail.com> (http://leonmontealeg.re/)",
16 "files": [
17 "build/*"
18 ],
19 "main": "build/index.js",
20 "types": "build/index.d.ts",
21 "repository": {
22 "type": "git",
23 "url": "git://github.com/OpenCircuits/svg2canvas.git"
24 },
25 "scripts": {
26 "build-prod": "rimraf ./build && tsc --build",
27 "build": "tsc --build",
28 "watch": "tsc --build -w",
29 "test": "cp ./tests/manual/* ./build/ && serve -port=8081 ./build/"
30 },
31 "devDependencies": {
32 "rimraf": "^3.0.2",
33 "ts-node": "^9.1.1",
34 "typescript": "^4.1.3"
35 }
36}