-
Notifications
You must be signed in to change notification settings - Fork 131
/
package.json
79 lines (79 loc) · 1.75 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.1.2",
"description": "Vue binding to canvas element via Konva framework",
"keywords": [
"vue",
"konva",
"canvas"
],
"homepage": "https://github.com/konvajs/vue-konva#readme",
"author": "Rafael Escala <[email protected]>",
"types": "dist/index.d.ts",
"main": "dist/vue-konva.umd.js",
"module": "dist/vue-konva.mjs",
"exports": {
"import": "./dist/vue-konva.mjs",
"require": "./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 && npm run tsc",
"test": "vitest",
"tsc": "tsc src/index.ts --declaration --emitDeclarationOnly --outDir ./dist --declarationDir ./dist"
},
"peerDependencies": {
"konva": ">7",
"vue": "^3"
},
"devDependencies": {
"@vue/test-utils": "^2.4.3",
"canvas": "^2.11.2",
"jsdom": "^23.2.0",
"konva": ">7",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.1.3",
"vue": "^3.4.5"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}