-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 908 Bytes
/
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
{
"name": "cache-entanglement",
"version": "1.2.2",
"description": "Manage caches that are dependent on each other efficiently.",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"build": "node build/index.mjs && tsc"
},
"keywords": [
"cache",
"entanglement",
"complex"
],
"repository": {
"type": "git",
"url": "/~https://github.com/izure1/cache-entanglement.git"
},
"author": "izure1 <admin@izure.org>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.13",
"esbuild": "^0.24.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
}
}