oberry
Version:
A lightweight and modern jQuery alternative for DOM manipulation, user interactions, and reactive data binding
59 lines • 1.39 kB
JSON
{
"name": "oberry",
"version": "0.18.1",
"description": "A lightweight and modern jQuery alternative for DOM manipulation, user interactions, and reactive data binding",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"exports": {
"import": "./dist/index.mjs"
},
"types": "dist/index.d.mts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"sideEffects": false,
"keywords": [
"dom",
"manipulation",
"jquery",
"alternative",
"reactive",
"data-binding",
"typescript",
"frontend",
"javascript",
"selector",
"signals"
],
"author": "Radosław Kaczmarczyk",
"license": "MIT",
"homepage": "https://github.com/radeqq007/oberry#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/radeqq007/oberry.git"
},
"bugs": {
"url": "https://github.com/radeqq007/oberry/issues"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@types/node": "^24.0.4",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"ultracite": "5.0.47",
"alien-signals": "^2.0.5"
},
"dependencies": {},
"peerDependencies": {
"alien-signals": "^2.0.5"
},
"scripts": {
"build": "tsup src/index.ts --dts",
"dev": "tsup src/index.ts --watch --dts",
"clean": "rm -rf dist",
"format": "pnpm dlx ultracite format",
"lint": "pnpm dlx ultracite lint"
}
}