Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
90 lines
2.5 KiB
Plaintext
90 lines
2.5 KiB
Plaintext
{
|
|
"name": "use-context-selector",
|
|
"description": "React useContextSelector hook in userland",
|
|
"version": "2.0.0",
|
|
"type": "module",
|
|
"author": "Daishi Kato",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dai-shi/use-context-selector.git"
|
|
},
|
|
"source": "./src/index.ts",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/cjs/index.d.ts",
|
|
"default": "./dist/cjs/index.js"
|
|
},
|
|
"default": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"packageManager": "pnpm@8.15.0",
|
|
"scripts": {
|
|
"compile": "rm -rf dist && pnpm run '/^compile:.*/'",
|
|
"compile:esm": "tsc -p tsconfig.esm.json",
|
|
"compile:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
|
|
"test": "pnpm run '/^test:.*/'",
|
|
"test:format": "prettier -c .",
|
|
"test:lint": "eslint .",
|
|
"test:types": "tsc -p . --noEmit",
|
|
"test:types:examples": "tsc -p examples --noEmit",
|
|
"test:spec": "vitest run",
|
|
"apidoc": "documentation readme src --section API --markdown-toc false --parse-extension ts",
|
|
"examples:01_counter": "DIR=01_counter vite",
|
|
"examples:02_person": "DIR=02_person vite",
|
|
"examples:03_suspense": "DIR=03_suspense vite"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"context",
|
|
"hooks"
|
|
],
|
|
"license": "MIT",
|
|
"prettier": {
|
|
"singleQuote": true
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.4.2",
|
|
"@testing-library/react": "^15.0.5",
|
|
"@testing-library/user-event": "^14.5.2",
|
|
"@types/node": "^20.12.7",
|
|
"@types/react": "^18.3.1",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/scheduler": "^0.23.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.7.1",
|
|
"@typescript-eslint/parser": "^7.7.1",
|
|
"documentation": "^14.0.3",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
"eslint-plugin-react": "^7.34.1",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"happy-dom": "^14.7.1",
|
|
"prettier": "^3.2.5",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"scheduler": "^0.23.2",
|
|
"ts-expect": "^1.3.0",
|
|
"typescript": "^5.4.5",
|
|
"vite": "^5.2.10",
|
|
"vitest": "^1.5.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18.0.0",
|
|
"scheduler": ">=0.19.0"
|
|
}
|
|
}
|