UNPKG

@gorgonjs/gorgon

Version:

A simple caching library for async functions

67 lines (66 loc) 1.54 kB
{ "name": "@gorgonjs/gorgon", "version": "1.6.1", "description": "A simple caching library for async functions", "homepage": "https://gorgonjs.dev", "main": "./dist/index.umd.js", "module": "./dist/index.es.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.es.js" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.umd.js" } } }, "scripts": { "test": "vitest", "coverage": "vitest run --coverage", "build": "vite build", "prepublish": "vite build", "tscheck": "tsc --noEmit" }, "repository": { "type": "git", "url": "git@github.com:mikevalstar/gorgon.git" }, "files": [ "dist", "skills", "!skills/_artifacts" ], "keywords": [ "cache", "promise", "async", "typescript", "tanstack-intent" ], "author": "Mike Valstar <mike@valstar.dev>", "license": "MIT", "bugs": { "url": "https://github.com/mikevalstar/gorgon/issues" }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "@vitest/coverage-c8": "^0.25.0", "@vitest/coverage-v8": "^0.34.3", "eslint": "^8.45.0", "jest": "^27.5.1", "typescript": "^5.1.6", "vite": "^4.4.4", "vite-plugin-dts": "^3.3.0", "vitest": "^0.33.0", "@tanstack/intent": "^0.0.23" }, "jest": { "collectCoverage": true, "timers": "fake" } }