@fcanvas/worker
Version:
The plugin provides support for using fCanvas in WebWorker
66 lines • 1.4 kB
JSON
{
"name": "@fcanvas/worker",
"version": "1.1.6",
"description": "The plugin provides support for using fCanvas in WebWorker",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"unpkg": "./dist/index.browser.mjs",
"jsdelivr": "dist/index.browser.global.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"jsdom": "^20.0.3",
"tsup": "^6.5.0",
"tsx": "^3.12.1",
"typescript": "^4.9.5",
"vite": "^4.0.3",
"vitest": "^0.26.2",
"fcanvas": "1.1.6",
"@fcanvas/communicate": "1.1.6"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/fcanvas/fcanvas.git"
},
"homepage": "https://fcanvas.js.org/guide/plugins/worker",
"keywords": [
"fcanvas",
"konva",
"reactivity",
"2d",
"canvas",
"tile",
"tiles",
"webworker",
"worker"
],
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "pnpm format"
}
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"@fcanvas/communicate": "1.1.6",
"fcanvas": "1.1.6"
},
"scripts": {
"build": "tsup",
"dev": "vite dev",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
}
}