|
3 | 3 | "version": "1.30.2",
|
4 | 4 | "main": "./nodejs.js",
|
5 | 5 | "module": "./nodejs.mjs",
|
| 6 | + "types": "./nodejs.d.ts", |
6 | 7 | "exports": {
|
7 | 8 | ".": {
|
8 | 9 | "import": "./nodejs.mjs",
|
|
12 | 13 | "import": "./nodejs.mjs",
|
13 | 14 | "require": "./nodejs.js"
|
14 | 15 | },
|
15 |
| - "./node.js": "./node.js", |
16 |
| - "./node.mjs": "./node.mjs", |
17 | 16 | "./cloudflare": {
|
18 | 17 | "import": "./cloudflare.mjs",
|
19 | 18 | "require": "./cloudflare.js"
|
20 | 19 | },
|
21 |
| - "./cloudflare.js": "./cloudflare.js", |
22 |
| - "./cloudflare.mjs": "./cloudflare.mjs", |
| 20 | + "./cloudflare.js": { |
| 21 | + "import": "./cloudflare.mjs", |
| 22 | + "require": "./cloudflare.js" |
| 23 | + }, |
| 24 | + "./cloudflare.mjs": { |
| 25 | + "import": "./cloudflare.mjs", |
| 26 | + "require": "./cloudflare.js" |
| 27 | + }, |
23 | 28 | "./fastly": {
|
24 | 29 | "import": "./fastly.mjs",
|
25 | 30 | "require": "./fastly.js"
|
26 | 31 | },
|
27 |
| - "./fastly.js": "./fastly.js", |
28 |
| - "./fastly.mjs": "./fastly.mjs" |
| 32 | + "./fastly.js": { |
| 33 | + "import": "./fastly.mjs", |
| 34 | + "require": "./fastly.js" |
| 35 | + }, |
| 36 | + "./fastly.mjs": { |
| 37 | + "import": "./fastly.mjs", |
| 38 | + "require": "./fastly.js" |
| 39 | + } |
29 | 40 | },
|
30 |
| - "types": "./nodejs.d.ts", |
31 | 41 | "description": "An HTTP/REST based Redis client built on top of Upstash REST API.",
|
32 | 42 | "repository": {
|
33 | 43 | "type": "git",
|
|
41 | 51 | "upstash"
|
42 | 52 | ],
|
43 | 53 | "files": [
|
44 |
| - "./**" |
| 54 | + "./*" |
45 | 55 | ],
|
46 | 56 | "scripts": {
|
47 |
| - "build": "tsup && cp README.md ./dist/ && cp package.json ./dist/ && cp LICENSE ./dist/", |
| 57 | + "build": "tsup && cp package.json README.md LICENSE dist/", |
48 | 58 | "test": "bun test pkg",
|
49 | 59 | "fmt": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
|
50 |
| - "prepare": "husky install", |
| 60 | + "prepare": "husky", |
51 | 61 | "lint": "eslint \"**/*.{js,ts,tsx}\" --quiet --fix",
|
52 | 62 | "format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
|
53 | 63 | "format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
|
54 | 64 | "lint:fix": "eslint . -c .ts,.tsx,.js,.jsx --fix",
|
55 | 65 | "commit": "cz",
|
56 |
| - "lint:format": "bun run lint:fix && bun run format" |
| 66 | + "lint:format": "bun run lint:fix && bun run format", |
| 67 | + "check-exports": "bun run build && cd dist && attw -P" |
57 | 68 | },
|
58 | 69 | "author": "Andreas Thomas <[email protected]>",
|
59 | 70 | "license": "MIT",
|
60 | 71 | "bugs": {
|
61 | 72 | "url": "https://github.com/upstash/upstash-redis/issues"
|
62 | 73 | },
|
63 | 74 | "homepage": "https://github.com/upstash/upstash-redis#readme",
|
64 |
| - "typesVersions": { |
65 |
| - "*": { |
66 |
| - "nodejs": [ |
67 |
| - "./nodejs.d.ts" |
68 |
| - ], |
69 |
| - "cloudflare": [ |
70 |
| - "./cloudflare.d.ts" |
71 |
| - ], |
72 |
| - "fastly": [ |
73 |
| - "./fastly.d.ts" |
74 |
| - ] |
75 |
| - } |
76 |
| - }, |
77 | 75 | "devDependencies": {
|
78 | 76 | "@biomejs/biome": "latest",
|
79 | 77 | "@commitlint/cli": "^19.3.0",
|
|
0 commit comments