-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-konva-editor",
"version": "0.2.0-r17",
"author": "mytac",
"description": "An image editor which is built by konva and react.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cli": "node ./scripts/index.mjs",
"build": "tsc -outDir ./dist && tsc -module commonjs -outDir ./lib",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint --fix --ext .js,.ts,jsx,tsx src",
"dev:release": "./publish.sh -dev",
"prod:release": "./publish.sh -prod",
"npm-server": "verdaccio",
"unrelease": "./unpublish.sh -dev",
"prod:unrelease": "./unpublish.sh -prod",
"type": " tsc --emitDeclarationOnly -outDir ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mytac/react-konva-editor.git"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"keywords": [
"editor",
"react",
"konva",
"react-component"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/mytac/react-konva-editor/issues"
},
"homepage": "https://github.com/mytac/react-konva-editor#readme",
"dependencies": {
"lodash": "^4.17.21",
"tinykeys": "^1.4.0",
"use-image": "1.0.8"
},
"devDependencies": {
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-prettier": "^3.3.1",
"@types/lodash": "^4.14.177",
"@types/node": "^12.0.0",
"@types/react": "^17.0.1",
"eslint": "^7.11.0",
"father": "4.1.8",
"prettier": "^2.2.1",
"react": "17.0.1",
"react-konva": "17.0.2-0",
"konva": "^8.2.3",
"typescript": "^4.9.5"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"react-konva": ">=17.0.2-0",
"konva":">=8.2.3"
}
}