-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.63 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.63 KB
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
{
"name": "@andrewshell/cacheism",
"version": "3.0.0",
"description": "Simple caching library",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"packageManager": "pnpm@9.15.1",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsdown",
"test": "pnpm build && c8 node --test test/*.test.cjs",
"coverage": "c8 report --reporter=text-lcov",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"prepublishOnly": "pnpm build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewshell/cacheism.git"
},
"keywords": [
"caching",
"cache"
],
"author": "Andrew Shell <andrew@andrewshell.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewshell/cacheism/issues"
},
"homepage": "https://github.com/andrewshell/cacheism#readme",
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/js": "^9.39.1",
"@types/node": "^25.0.0",
"c8": "^10.1.3",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"mockdate": "^3.0.5",
"safe-buffer": "^5.2.1",
"seedrandom": "^3.0.5",
"tsdown": "^0.17.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0"
}
}