-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
102 lines (102 loc) · 2.61 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "pikaso-react-hook",
"version": "2.1.1",
"description": "Pikaso React Hook",
"author": "Ramin Mousavi <[email protected]> (http://github.com/raminious)",
"license": "MIT",
"scripts": {
"typecheck": "tsc",
"commitlint": "commitlint",
"test": "jest",
"coverage": "jest --coverage",
"_postinstall": "husky install",
"prepublish": "pinst --disable",
"postpublish": "pinst --enable",
"clean": "rimraf lib && rimraf esm && rimraf umd",
"build": "npm run clean && rollup -c"
},
"dependencies": {
"pikaso": "^2.7.3"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-typescript": "^8.1.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "^3.7.0",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"canvas": "^2.9.3",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^5.0.4",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.0",
"pinst": "^2.1.1",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
"typescript": "^4.7.4"
},
"keywords": [
"canvas",
"drawing",
"graphic",
"crop",
"rotate",
"shape",
"draw",
"flip",
"text",
"pencil",
"konva",
"fabric",
"react"
],
"browser": {
"canvas": false,
"jsdom": false
},
"bugs": {
"url": "https://github.com/pikasojs/pikaso-react-hook/issues"
},
"homepage": "https://github.com/pikasojs/pikaso-react-hook",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/pikasojs/pikaso-react-hook.git"
},
"types": "esm/index.d.ts",
"typings": "esm/index.d.ts",
"module": "esm/index.js",
"main": "lib/index.js",
"sideEffects": false,
"files": [
"esm",
"lib",
"LICENSE",
"README"
]
}