-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "@svg-drawing/react",
"version": "4.2.5",
"description": "React svg drawing library. This library is a React extension of svg-drawing.",
"author": {
"name": "Kazuto Kamei",
"email": "[email protected]"
},
"homepage": "https://github.com/kmkzt/svg-drawing/tree/master/packages/react#readme",
"license": "MIT",
"type": "module",
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"browser": "./lib/index.umd.js",
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"development": "./lib/index.dev.js"
},
"files": [
"lib/**/*"
],
"typedocMain": "src/index.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/kmkzt/svg-drawing.git",
"directory": "packages/react"
},
"bugs": {
"url": "https://github.com/kmkzt/svg-drawing/issues"
},
"scripts": {
"dev": "NODE_ENV=development rollup -w -c",
"dev:tsc": "NODE_ENV=development tsc -w",
"build": "npm-run-all -p lib:*",
"lib:rollup": "NODE_ENV=production rollup -c",
"lib:tsc": "NODE_ENV=production tsc -p ./tsconfig.lib.json",
"clear": "rimraf lib/* *.tsbuildinfo",
"typecheck": "tsc",
"lint": "eslint ./src --ext .js,.ts,.tsx",
"fmt": "yarn lint --fix",
"prepare": "yarn build"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"optionalDependencies": {
"@svg-drawing/core": "4.2.5",
"@svg-drawing/img-trace": "4.2.5"
}
}