@ekwoka/alpine-history
Version:
Sync Component an Store values to the URL Search Params!!!
51 lines • 1.23 kB
JSON
{
"name": "@ekwoka/alpine-history",
"version": "0.2.1",
"description": "Sync Component an Store values to the URL Search Params!!!",
"author": {
"name": "Eric Kwoka",
"email": "eric@thekwoka.net",
"url": "https://thekwoka.net/"
},
"license": "MIT",
"keywords": [
"AlpineJS"
],
"type": "module",
"files": [
"dist",
"src"
],
"sideEffects": false,
"main": "dist/",
"types": "dist/",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./dist": "./dist/",
"./src": "./src/"
},
"peerDependencies": {
"alpinejs": "3.x"
},
"prettier": {
"singleQuote": true,
"bracketSameLine": true
},
"repository": {
"type": "git",
"url": "https://github.com/ekwoka/alpine-plugins"
},
"homepage": "https://github.com/ekwoka/alpine-plugins/blob/main/packages/params/README.md",
"scripts": {
"build": "vite build",
"coverage": "vitest run --coverage",
"lint": "eslint --fix ./src; prettier --write ./src --loglevel error",
"lint:check": "eslint --max-warnings 10 ./src && prettier --check ./src",
"lint:types": "tsc --noEmit",
"prebuild": "rm -rf dist",
"test": "vitest"
}
}