forked from konvajs/react-konva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.14 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
{
"license": "MIT",
"name": "react-konva",
"description": "React binding to canvas element via Konva framework",
"version": "18.2.5",
"keywords": [
"react",
"canvas",
"jsx",
"konva"
],
"bugs": "https://github.com/konvajs/react-konva/issues",
"main": "lib/ReactKonva.js",
"module": "es/ReactKonva.js",
"repository": {
"type": "git",
"url": "[email protected]:konvajs/react-konva.git"
},
"dependencies": {
"@types/react-reconciler": "^0.28.2",
"its-fine": "^1.0.6",
"react-reconciler": "~0.29.0",
"scheduler": "^0.23.0"
},
"targets": {
"none": {}
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/lavrton"
},
{
"type": "opencollective",
"url": "https://opencollective.com/konva"
},
{
"type": "github",
"url": "https://github.com/sponsors/lavrton"
}
],
"peerDependencies": {
"konva": "^8.0.1 || ^7.2.5",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/react": "18.0.21",
"chai": "4.3.6",
"konva": "^8.3.13",
"mocha-headless-chrome": "^4.0.0",
"parcel": "^2.7.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sinon": "^14.0.1",
"typescript": "^4.8.4",
"use-image": "^1.1.0",
"util": "^0.12.4"
},
"scripts": {
"build": " tsc -outDir ./es && tsc -module commonjs -outDir ./lib && cp ./ReactKonvaCore.d.ts ./lib && cp ./ReactKonvaCore.d.ts ./es",
"test:typings": "tsc --noEmit",
"preversion": "npm test",
"version": "npm run build",
"postversion": "",
"test": "npm run test:build && mocha-headless-chrome -f ./test-build/unit-tests.html -a disable-web-security && npm run test:typings",
"test:build": "parcel build ./test/unit-tests.html --dist-dir test-build --target none --public-url ./ --no-source-maps",
"test:watch": "rm -rf ./parcel-cache && parcel serve ./test/unit-tests.html"
},
"typings": "react-konva.d.ts",
"files": [
"README.md",
"lib",
"es",
"react-konva.d.ts",
"ReactKonvaCore.d.ts"
]
}