@stencil/store
Version:
Store is a lightweight shared state library by the StencilJS core team. Implements a simple key/value map that efficiently re-renders components when necessary.
70 lines (69 loc) • 1.9 kB
JSON
{
"name": "@stencil/store",
"author": "StencilJS Team",
"version": "2.2.2",
"description": "Store is a lightweight shared state library by the StencilJS core team. Implements a simple key/value map that efficiently re-renders components when necessary.",
"license": "MIT",
"homepage": "https://stenciljs.com/docs/stencil-store",
"repository": {
"type": "git",
"url": "git://github.com/stenciljs/store.git"
},
"keywords": [
"stencil",
"redux",
"global",
"state",
"tunnel",
"hooks"
],
"type": "module",
"module": "dist/index.js",
"main": "dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"build": "run-s build.clean build.rollup",
"build.clean": "rimraf dist",
"build.rollup": "rollup -c rollup.config.js",
"prettier": "npm run prettier.base -- --write",
"prettier.base": "prettier --cache \"src/**/*.ts\"",
"prettier.dry-run": "npm run prettier.base -- --list-different",
"release": "np",
"test": "run-s test.*",
"test.prettier": "npm run prettier.dry-run",
"test.unit": "vitest",
"version": "npm run build"
},
"files": [
"dist"
],
"peerDependencies": {
"@stencil/core": ">=2.0.0 || >=3.0.0 || >= 4.0.0-beta.0 || >= 4.0.0"
},
"devDependencies": {
"@ionic/prettier-config": "^4.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@stencil/core": "^4.38.2",
"@types/node": "^24.9.2",
"@vitest/coverage-v8": "^4.0.5",
"np": "^10.2.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"typescript": "~5.9.3",
"vitest": "^4.0.5"
},
"prettier": "@ionic/prettier-config"
}