valync
Version:
**A lightweight, framework-agnostic async data handling library for React & Vue, inspired by Riverpod’s AsyncValue pattern and powered by ts-results-es.**
75 lines • 1.41 kB
JSON
{
"name": "valync",
"version": "0.2.3",
"main": "dist/core/index.js",
"types": "dist/core/index.d.ts",
"exports": {
".": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
},
"./vue": {
"import": "./dist/vue/index.js",
"types": "./dist/vue/index.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"valync",
"riverpod",
"riverpod-js",
"async",
"async-data",
"async-state",
"state-management",
"data-fetching",
"api-response",
"cache",
"error-handling",
"abortcontroller",
"option-result",
"ts-results",
"typescript",
"client-side",
"promise-wrapper",
"http-client",
"react",
"react-hook",
"react-async",
"vue",
"vue3",
"vue-async",
"vue-composition-api",
"lightweight",
"monorepo",
"frontend-utils",
"data-hooks",
"custom-hook",
"swr",
"tanstack-query",
"epikoder"
],
"dependencies": {
"ts-results-es": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/react": "^19.1.8",
"jest": "^30.0.2",
"ts-jest": "^29.4.0"
},
"peerDependencies": {
"vue": "^3.0.0",
"react": "^18.0.0"
},
"scripts": {
"build": "tsc -b",
"test": "jest"
}
}