forked from kmkzt/svg-drawing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "@svg-drawing/img-trace",
"version": "4.2.2",
"license": "MIT",
"description": "svg drawing library.",
"author": {
"name": "Kazuto Kamei",
"email": "[email protected]"
},
"repository": "github:kmkzt/svg-drawing",
"homepage": "https://github.com/kmkzt/svg-drawing/tree/master/packages/img-trace#readme",
"bugs": {
"url": "https://github.com/kmkzt/svg-drawing/issues"
},
"keywords": [
"svg",
"jpg",
"png",
"tracer"
],
"types": "lib/index.d.ts",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"browser": "lib/index.umd.js",
"files": [
"lib/**/*"
],
"scripts": {
"dev": "NODE_ENV=development rollup -w -c",
"dev:tsc": "NODE_ENV=development tsc -w",
"build": "npm-run-all lib:*",
"lib:clear": "rimraf lib/*",
"lib:rollup": "NODE_ENV=production rollup -c",
"lib:tsc": "NODE_ENV=production tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src --ext .js,.ts,.tsx",
"fmt": "yarn lint --fix",
"prepare": "yarn build"
},
"optionalDependencies": {
"@svg-drawing/animation": "4.2.2",
"@svg-drawing/core": "4.2.2"
},
"publishConfig": {
"access": "public"
},
"gitHead": "6811d0236e51e0204ffbf64a6124ca5469079373"
}