forked from konvajs/vue-konva
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 1.71 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
{
"name": "vue-konva",
"version": "3.0.3",
"description": "Vue binding to canvas element via Konva framework",
"keywords": [
"vue",
"konva",
"canvas"
],
"homepage": "https://github.com/konvajs/vue-konva#readme",
"author": "Rafael Escala <rafaesc92@gmail.com>",
"main": "dist/vue-konva.umd.js",
"types": "dist/index.d.ts",
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
},
"files": [
"dist/",
"vetur/"
],
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/lavrton"
},
{
"type": "opencollective",
"url": "https://opencollective.com/konva"
},
{
"type": "github",
"url": "https://github.com/sponsors/lavrton"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/konvajs/vue-konva.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/konvajs/vue-konva/issues"
},
"scripts": {
"build": "vite build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"format": "prettier --write ."
},
"peerDependencies": {
"konva": ">7",
"vue": "^3"
},
"devDependencies": {
"@vitest/coverage-c8": "^0.30.1",
"@vue/compiler-sfc": "^3.2.31",
"@vue/test-utils": "^2.3.2",
"canvas": "^2.11.2",
"eslint": "^8.38.0",
"eslint-plugin-vue": "^8.7.1",
"jsdom": "^21.1.1",
"konva": ">7",
"prettier": "^3.0.0-alpha.7-for-vscode",
"typescript": "^5.0.4",
"vite": "^4.2.2",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.30.1",
"vue": "3.2"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}