-
-
Notifications
You must be signed in to change notification settings - Fork 256
/
package.json
82 lines (82 loc) · 2.33 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
{
"license": "MIT",
"name": "react-konva",
"description": "React binding to canvas element via Konva framework",
"version": "19.0.0-0",
"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.8",
"its-fine": "^1.2.5",
"react-reconciler": "0.31.0-beta-73bcdfbae5-20240502",
"scheduler": "0.25.0-beta-73bcdfbae5-20240502"
},
"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 || ^9.0.0",
"react": ">=19.0.0-beta",
"react-dom": ">=19.0.0-beta"
},
"devDependencies": {
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.7",
"@types/react": "18.3.3",
"chai": "4.3.7",
"konva": "^9.3.14",
"mocha-headless-chrome": "^4.0.0",
"parcel": "^2.12.0",
"process": "^0.11.10",
"react": "19.0.0-beta-73bcdfbae5-20240502",
"react-dom": "19.0.0-beta-73bcdfbae5-20240502",
"sinon": "^15.1.0",
"timers-browserify": "^2.0.12",
"typescript": "^5.1.3",
"use-image": "^1.1.1",
"util": "^0.12.5"
},
"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": "NODE_ENV=test npm run test:build && mocha-headless-chrome -f ./test-build/unit-tests.html -a disable-web-security && npm run test:typings",
"test:build": "NODE_ENV=test parcel build ./test/unit-tests.html --dist-dir test-build --target none --public-url ./ --no-source-maps",
"test:watch": "NODE_ENV=test 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"
]
}