-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.54 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
94
95
96
97
98
99
{
"name": "warp-contracts-redis",
"version": "0.4.2",
"description": "Redis implementation for Warp Contracts",
"license": "MIT",
"author": "FirstBatch Team <dev@firstbatch.xyz>",
"homepage": "https://github.com/firstbatchxyz/warp-contracts-redis#readme",
"type": "module",
"source": "src/index.ts",
"types": "lib/index.d.ts",
"cjs": "lib/index.cjs",
"mjs": "lib/index.mjs",
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs",
"default": "./lib/index.mjs"
},
"targets": {
"cjs": {
"outputFormat": "commonjs",
"isLibrary": true,
"context": "node"
},
"mjs": {
"outputFormat": "esmodule",
"isLibrary": true,
"context": "node"
}
},
"sideEffects": false,
"engines": {
"node": ">=16.5"
},
"files": [
"lib/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "parcel build",
"clean": "rimraf ./lib && rimraf ./.parcel-cache",
"check": "tsc --noEmit && echo 'All good.'",
"lint": "eslint '**/*.ts' && echo 'All good.'",
"format": "prettier --check '**/*.ts'",
"prepublishOnly": "pnpm lint:fix",
"preversion": "pnpm lint && pnpm build",
"version": "pnpm format && git add -A src",
"postversion": "git push && git push --tags",
"yalc:publish": "pnpm build && yalc publish --push",
"test": "jest --detectOpenHandles"
},
"dependencies": {
"safe-stable-stringify": "^2.4.3"
},
"peerDependencies": {
"ioredis": "^5.3.2",
"warp-contracts": "^1.4.2"
},
"devDependencies": {
"@parcel/config-default": "^2.11.0",
"@parcel/packager-ts": "^2.11.0",
"@parcel/transformer-typescript-tsc": "^2.11.0",
"@parcel/transformer-typescript-types": "^2.11.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^29.5.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"parcel": "^2.11.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.2.1",
"typescript": "^4.7.4"
},
"contributors": [
"Faruk Can Özkan <farukcan@firstbatch.xyz>",
"Erhan Tezcan <erhan@firstbatch.xyz>"
],
"keywords": [
"key-value store",
"storage",
"database",
"blockchain",
"arweave",
"smartweave",
"warp-contracts",
"redis",
"cache"
],
"prettier": {
"printWidth": 120
}
}