-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
93 lines (93 loc) · 2.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@upstash/redis",
"version": "1.30.2",
"main": "./nodejs.js",
"module": "./nodejs.mjs",
"types": "./nodejs.d.ts",
"exports": {
".": {
"import": "./nodejs.mjs",
"require": "./nodejs.js"
},
"./node": {
"import": "./nodejs.mjs",
"require": "./nodejs.js"
},
"./cloudflare": {
"import": "./cloudflare.mjs",
"require": "./cloudflare.js"
},
"./cloudflare.js": {
"import": "./cloudflare.mjs",
"require": "./cloudflare.js"
},
"./cloudflare.mjs": {
"import": "./cloudflare.mjs",
"require": "./cloudflare.js"
},
"./fastly": {
"import": "./fastly.mjs",
"require": "./fastly.js"
},
"./fastly.js": {
"import": "./fastly.mjs",
"require": "./fastly.js"
},
"./fastly.mjs": {
"import": "./fastly.mjs",
"require": "./fastly.js"
}
},
"description": "An HTTP/REST based Redis client built on top of Upstash REST API.",
"repository": {
"type": "git",
"url": "git+https://github.com/upstash/upstash-redis.git"
},
"keywords": [
"redis",
"database",
"serverless",
"edge",
"upstash"
],
"files": [
"./*"
],
"scripts": {
"build": "tsup && cp package.json README.md LICENSE dist/",
"test": "bun test pkg",
"fmt": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"prepare": "husky",
"lint": "eslint \"**/*.{js,ts,tsx}\" --quiet --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"lint:fix": "eslint . -c .ts,.tsx,.js,.jsx --fix",
"commit": "cz",
"lint:format": "bun run lint:fix && bun run format",
"check-exports": "bun run build && cd dist && attw -P"
},
"author": "Andreas Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/upstash/upstash-redis/issues"
},
"homepage": "https://github.com/upstash/upstash-redis#readme",
"devDependencies": {
"@biomejs/biome": "latest",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/crypto-js": "^4.1.3",
"@typescript-eslint/eslint-plugin": "8.4.0",
"@typescript-eslint/parser": "8.4.0",
"bun-types": "1.0.33",
"eslint": "9.10.0",
"eslint-plugin-unicorn": "55.0.0",
"husky": "^9.1.1",
"prettier": "^3.3.3",
"tsup": "^8.2.3",
"typescript": "latest"
},
"dependencies": {
"crypto-js": "^4.2.0"
}
}