@valkey/valkey-glide 1.1.0-rc10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@valkey/valkey-glide",
3
+ "types": "build-ts/index.d.ts",
4
+ "version": "v1.1.0-rc10",
5
+ "description": "An AWS-sponsored, open-source Redis client.",
6
+ "main": "build-ts/index.js",
7
+ "module": "build-ts/index.js",
8
+ "type": "commonjs",
9
+ "scripts": {
10
+ "lint": "eslint .",
11
+ "lint:fix": "eslint . --fix",
12
+ "clean": "rm -rf build-ts/",
13
+ "copy-declaration-files": "cp ../../build-ts/*.d.ts build-ts/ && cp ../../build-ts/src/*.d.ts build-ts/src/",
14
+ "build": "tsc && mkdir -p build-ts/src && npm run copy-declaration-files"
15
+ },
16
+ "files": [
17
+ "/build-ts"
18
+ ],
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/valkey-io/valkey-glide.git"
22
+ },
23
+ "keywords": [
24
+ "valkey",
25
+ "valkeyClient",
26
+ "client",
27
+ "valkey-glide"
28
+ ],
29
+ "author": "Amazon Web Services",
30
+ "license": "Apache-2.0",
31
+ "bugs": {
32
+ "url": "https://github.com/valkey-io/valkey-glide/issues"
33
+ },
34
+ "homepage": "https://github.com/valkey-io/valkey-glide#readme",
35
+ "devDependencies": {
36
+ "@types/node": "^18.11.18",
37
+ "@typescript-eslint/eslint-plugin": "^5.48.0",
38
+ "@typescript-eslint/parser": "^5.48.0",
39
+ "eslint": "^8.31.0",
40
+ "typescript": "^4.9.4"
41
+ },
42
+ "optionalDependencies": {
43
+ "@valkey/valkey-glide-darwin-arm64": "v1.1.0-rc10",
44
+ "@valkey/valkey-glide-darwin-x64": "v1.1.0-rc10",
45
+ "@valkey/valkey-glide-linux-arm64": "v1.1.0-rc10",
46
+ "@valkey/valkey-glide-linux-x64": "v1.1.0-rc10",
47
+ "@valkey/valkey-glide-linux-musl-arm64": "v1.1.0-rc10",
48
+ "@valkey/valkey-glide-linux-musl-x64": "v1.1.0-rc10"
49
+ },
50
+ "eslintConfig": {
51
+ "extends": [
52
+ "eslint:recommended",
53
+ "plugin:@typescript-eslint/recommended"
54
+ ],
55
+ "parser": "@typescript-eslint/parser",
56
+ "plugins": [
57
+ "@typescript-eslint"
58
+ ],
59
+ "ignorePatterns": [
60
+ "build-ts/*"
61
+ ],
62
+ "root": true
63
+ },
64
+ "dependencies": {
65
+ "detect-libc": "^2.0.3"
66
+ }
67
+ }