forked from piwodlaiwo/cutout
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "shapesnap",
"version": "1.2.1",
"description": "Transform images to SVG using primitive shapes",
"author": "kodemunkie",
"license": "MIT",
"main": "./dist/Shapesnap.js",
"types": "./dist/Shapesnap.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/KodeMunkie/shapesnap.git"
},
"keywords": [
"art",
"svg",
"shapes",
"image-processing",
"rasterizer",
"primitive",
"vectorization"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && rollup -c",
"test": "jest",
"dev": "tsx ./runner.ts images/robot.png ./robot.svg"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/ndarray": "^1.0.14",
"@types/node": "^20.12.7",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"bezier": "^0.1.0",
"bresenham": "0.0.4",
"color-blend": "^4.0.0",
"fdrandom": "^3.2.0",
"jimp": "^0.22.12",
"ndarray": "^1.0.19",
"point-in-ellipse": "^2.0.0",
"robust-point-in-polygon": "^1.0.3",
"rollup": "^4.17.1",
"rollup-plugin-typescript2": "^0.36.0",
"ts-stopwatch": "^0.0.4",
"zeros": "^1.0.0"
}
}