UNPKG

@snapdrag/plugins

Version:

Plugins for Snapdrag drag and drop library

73 lines 1.54 kB
{ "name": "@snapdrag/plugins", "version": "0.8.9", "description": "Plugins for Snapdrag drag and drop library", "keywords": [ "snapdrag", "drag", "drop", "drag-and-drop", "draggable", "vanilla", "typescript", "plugins", "scroller" ], "repository": { "type": "git", "url": "git+https://github.com/zheksoon/snapdrag.git", "directory": "packages/plugins" }, "license": "MIT", "author": { "name": "Eugene Daragan" }, "type": "module", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "main": "./dist/index.cjs", "module": "./dist/index.js", "source": "./src/index.ts", "types": "./dist/index.d.ts", "files": [ "dist/**/*", "src/**/*", "package.json", "README.md", "LICENSE" ], "sideEffects": false, "scripts": { "build": "tsup --clean && yarn copy-files && yarn publint", "copy-files": "cp ../../README.md ../../LICENSE dist", "dev": "tsup --watch", "lint": "yarn typecheck", "typecheck": "tsc --noEmit" }, "dependencies": { "@snapdrag/core": "0.8.9" }, "devDependencies": { "@types/node": ">=20.18.0", "publint": "^0.3.9", "tsup": "^8.4.0", "typescript": "^5.2.2" }, "packageManager": "yarn@4.9.1", "engines": { "node": ">=20.18.0" }, "publishConfig": { "access": "public" } }