-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.08 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
{
"author": "Justin Wilaby",
"name": "svg-path-interpolator",
"version": "0.2.5",
"license": "MIT",
"description": "The SVG Path Interpolator produces point data representing interpolated values within an SVG path.",
"repository": {
"type": "git",
"url": "https://github.com/justinwilaby/svg-path-interpolator.git"
},
"bin": {
"svgpi": "./bin/svgpi"
},
"engines": {
"node": ">=14.x"
},
"type": "module",
"exports": {
".": {
"module": "./lib/index.js",
"import": "./lib/index.js",
"default": "./lib/index.js"
},
"./*": "./lib/*"
},
"main": "./lib/index.js",
"browser": "./lib/index.js",
"files": [
"bin",
"config",
"lib"
],
"keywords": [
"svg",
"points",
"paths",
"drawing",
"interpolate",
"calculate",
"animate",
"bézier",
"bezier",
"curves",
"polygon"
],
"scripts": {
"build": "node import-path-plugin.mjs && node copy-deps.mjs"
},
"dependencies": {
"sax-wasm": "2.2.0"
},
"devDependencies": {
"glob": "^8.0.3",
"typescript": "^4.7.2"
}
}