UNPKG

@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.

69 lines (68 loc) 1.86 kB
{ "name": "@stencil/store", "author": "StencilJS Team", "version": "2.1.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.*", "build.clean": "rm -rf 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.1.2", "@stencil/core": "^4.27.1", "@types/node": "^22.13.5", "@vitest/coverage-v8": "^3.0.7", "np": "^10.2.0", "npm-run-all2": "^7.0.2", "prettier": "^3.5.2", "rollup": "^4.34.8", "typescript": "~5.7.3", "vitest": "^3.0.7" }, "prettier": "@ionic/prettier-config" }