12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {
- "name": "@sanity/eventsource",
- "version": "5.0.1",
- "description": "EventSource polyfill for browser and node.js",
- "keywords": [
- "sanity",
- "cms",
- "headless",
- "realtime",
- "content",
- "eventsource",
- "polyfill"
- ],
- "homepage": "https://www.sanity.io/",
- "bugs": {
- "url": "https://github.com/sanity-io/sanity/issues"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/sanity-io/eventsource.git"
- },
- "license": "MIT",
- "author": "Sanity.io <hello@sanity.io>",
- "sideEffects": false,
- "type": "commonjs",
- "exports": {
- ".": {
- "types": "./node.d.ts",
- "browser": {
- "types": "./browser.d.ts",
- "default": "./browser.js"
- },
- "deno": "./browser.js",
- "edge-light": "./browser.js",
- "worker": "./browser.js",
- "node": "./node.js",
- "default": "./node.js"
- },
- "./browser": {
- "types": "./browser.d.ts",
- "default": "./browser.js"
- },
- "./node": {
- "types": "./node.d.ts",
- "default": "./node.js"
- },
- "./package.json": "./package.json"
- },
- "main": "./node.js",
- "browser": "./browser.js",
- "types": "./node.d.ts",
- "typesVersions": {
- "*": {
- "browser": [
- "./browser.d.ts"
- ],
- "node": [
- "./node.d.ts"
- ]
- }
- },
- "files": [
- "CHANGELOG.md",
- "browser.js",
- "browser.d.ts",
- "node.js",
- "node.d.ts"
- ],
- "scripts": {
- "prepublishOnly": "tsc",
- "test": "tsc --noEmit --emitDeclarationOnly false"
- },
- "prettier": {
- "semi": false,
- "singleQuote": true
- },
- "dependencies": {
- "@types/event-source-polyfill": "1.0.2",
- "@types/eventsource": "1.1.12",
- "event-source-polyfill": "1.0.31",
- "eventsource": "2.0.2"
- },
- "devDependencies": {
- "prettier": "^3.0.3",
- "prettier-plugin-packagejson": "^2.4.5",
- "typescript": "5.2.2"
- }
- }
|