-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.74 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.74 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
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
100
101
102
103
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@stephen-shopopop/cache",
"description": "cache implementation for nodejs",
"version": "0.13.0",
"keywords": [
"cache",
"memory",
"redis",
"valkey",
"sqlite"
],
"author": "Stephen Deletang <me@stephendeletang.com>",
"contributors": [
{
"name": "Stephen Deletang",
"email": "stephen-shopopop@shopopop.com"
}
],
"license": "ISC",
"homepage": "https://github.com/stephen-shopopop/node-cache#readme",
"bugs": {
"url": "https://github.com/stephen-shopopop/node-cache/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephen-shopopop/node-cache.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": false,
"clean": true,
"platform": "node",
"shims": true,
"format": [
"cjs",
"esm"
],
"dts": true,
"minify": false
},
"scripts": {
"test": "tsc --pretty --noEmit && npx tsx ./bin/test-runner.js **/*.test.ts -C",
"test:types": "tsd --files test/",
"coverage": "c8 --reporter=lcov --reporter=text --reporter=html npm run test",
"bench": "node bench/cache.bench.js",
"build": "tsup-node",
"lint": "biome lint .",
"format": "biome lint --write . && biome format --write .",
"check": "tsc --pretty --noEmit && npm run lint",
"clean": "rm -rf ./dist",
"maintenance": "npm run clean & rm -rf ./coverage && rm -rf ./node_modules && npm cache clean --force",
"deps:update": "npx taze",
"deps:unused": "npx knip",
"biome:migrate": "npm install --save-dev --save-exact @biomejs/biome@latest && npx @biomejs/biome migrate --write",
"tarball:check": "npm pack --dry-run",
"publish:dry-run": "npm publish --dry-run",
"prepack": "npm run build",
"docs": "npx typedoc --out docs src"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@reporters/github": "^1.12.0",
"@types/node": "^24.12.0",
"c8": "^10.1.3",
"docker-compose": "^1.3.1",
"iovalkey": "^0.3.3",
"is-ci": "^4.1.0",
"mitata": "^1.0.34",
"simple-git-hooks": "^2.13.1",
"tsd": "^0.33.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "npm run check"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"engines": {
"node": ">=20.17.0"
}
}