stencil-prop-store-sync
Version:
A Stencil decorator for synchronizing @Prop and @State changes with a store, so you don't have to worry about prop drilling.
50 lines (49 loc) • 1.14 kB
JSON
{
"name": "stencil-prop-store-sync",
"type": "module",
"version": "0.0.4",
"description": "A Stencil decorator for synchronizing @Prop and @State changes with a store, so you don't have to worry about prop drilling.",
"license": "MIT",
"module": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"keywords": [
"stencil",
"prop",
"state",
"store",
"sync",
"prop drilling",
"prop-drilling",
"context"
],
"files": [
"build"
],
"author": "Vaibhav Shinde <vaibhavkshinde20@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/vaibhavshn/stencil-prop-store-sync.git"
},
"scripts": {
"build": "tsup",
"start": "stencil build --dev --watch --serve"
},
"devDependencies": {
"@stencil/core": "^4.27.2",
"@stencil/store": "^2.1.2",
"@types/node": "^22.13.10",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
},
"peerDependencies": {
"@stencil/core": ">=2",
"@stencil/store": ">=2"
}
}