forked from lawrencecchen/solid-konva
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 916 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 916 Bytes
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
{
"name": "solid-konva",
"version": "0.1.6",
"description": "Solid.js bindings for Konva.js",
"repository": {
"type": "git",
"url": "https://github.com/lawrencecchen/solid-konva.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^25.9.2",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.2",
"vite-plugin-solid": "^2.11.12"
},
"dependencies": {
"@solid-primitives/resize-observer": "^2.1.5",
"konva": "^10.3.0",
"solid-js": "^1.9.13"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/solid-konva.umd.cjs",
"module": "./dist/solid-konva.js",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/solid-konva.js",
"require": "./dist/solid-konva.umd.cjs"
}
},
"types": "./dist/lib/index.d.ts",
"author": "Lawrence Chen"
}