-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.73 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
{
"name": "adev-lru",
"version": "1.3.0",
"description": "A lightweight and efficient LRU (Least Recently Used) cache implementation for JavaScript and TypeScript.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"type": "module",
"engines": {
"node": ">=12"
},
"scripts": {
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:types": "tsc --project tsconfig.types.json",
"build": "npm run build:types && npm run build:esm && npm run build:cjs",
"test": "jest",
"lint": "ts-standard --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm test",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Armando284/adev-lru.git"
},
"keywords": [
"lru",
"cache",
"javascript",
"typescript",
"adev",
"memory-management",
"data-structure",
"performance"
],
"author": "Armando Peña Tamayo (adev) [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/Armando284/adev-lru/issues"
},
"homepage": "https://github.com/Armando284/adev-lru#readme",
"files": [
"dist"
],
"private": false,
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"ts-jest": "29.2.5",
"ts-standard": "12.0.2",
"typescript": "5.7.2"
},
"ts-standard": {
"project": "tsconfig.eslint.json",
"ignore": [
"dist",
"src/**/*.js"
]
},
"dependencies": {
"adev-monads": "^2.2.0"
}
}