UNPKG

valtio-reactive

Version:

valtio-reactive makes Valtio a reactive library

85 lines (84 loc) 2.35 kB
{ "name": "valtio-reactive", "description": "valtio-reactive makes Valtio a reactive library", "version": "0.1.2", "type": "module", "author": "Daishi Kato", "repository": { "type": "git", "url": "https://github.com/valtiojs/valtio-reactive.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@9.4.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", "examples:01_watch": "DIR=01_watch vite" }, "keywords": [ "valtio", "reactive" ], "license": "MIT", "prettier": { "singleQuote": true }, "devDependencies": { "@eslint/js": "^9.22.0", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.2.0", "@testing-library/user-event": "^14.6.1", "@types/node": "^22.13.10", "@types/react": "^19.0.10", "@types/react-dom": "^19.0.4", "eslint": "9.22.0", "eslint-import-resolver-typescript": "^3.7.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-react": "^7.37.4", "eslint-plugin-react-compiler": "19.0.0-beta-decd7b8-20250118", "eslint-plugin-react-hooks": "5.2.0", "happy-dom": "^17.4.3", "prettier": "^3.5.3", "react": "^19.0.0", "react-dom": "^19.0.0", "ts-expect": "^1.3.0", "typescript": "^5.8.2", "typescript-eslint": "^8.26.0", "valtio": "^2.1.3", "valtio-reactive": "link:", "vite": "^6.2.1", "vite-tsconfig-paths": "^5.1.4", "vitest": "^3.0.8" }, "peerDependencies": { "valtio": ">=2.0.0" } }