-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.25 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.25 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
{
"name": "koatty_cacheable",
"version": "3.0.6",
"description": "Cacheable for koatty.",
"scripts": {
"build": "pnpm run build:js && pnpm run build:dts && pnpm run build:doc && pnpm run build:cp",
"build:js": "tsup",
"build:dts": "bash ../../scripts/build-dts.sh",
"build:doc": "api-documenter markdown --input temp --output docs/api",
"build:cp": "node ../../scripts/postBuild.js",
"clean": "rimraf dist temp docs/api",
"lint": "eslint --ext .ts,.js ./src",
"test": "pnpm run lint && jest --passWithNoTests",
"test:cov": "jest --collectCoverage --detectOpenHandles"
},
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/koatty/koatty_cacheable.git"
},
"keywords": [
"cache",
"store",
"koatty",
"koatty"
],
"engines": {
"node": ">=18.0.0"
},
"author": {
"name": "richenlin",
"email": "richenlin@gmail.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/koatty/koatty_cacheable/issues"
},
"homepage": "https://github.com/koatty/koatty_cacheable",
"maintainers": [
{
"name": "richenlin",
"email": "richenlin@gmail.com"
}
],
"devDependencies": {
"@microsoft/api-documenter": "^7.26.x",
"@microsoft/api-extractor": "^7.52.x",
"@types/jest": "^29.5.x",
"@types/koa": "^2.x.x",
"@types/lodash": "^4.x.x",
"@types/node": "^22.x.x",
"@typescript-eslint/eslint-plugin": "^8.x.x",
"@typescript-eslint/parser": "^8.x.x",
"eslint": "^8.x.x",
"eslint-plugin-jest": "^28.x.x",
"jest": "^29.x.x",
"jest-html-reporters": "^3.x.x",
"reflect-metadata": "^0.2.2",
"ts-jest": "^29.x.x",
"tslib": "^2.x.x"
},
"dependencies": {
"koatty_container": "workspace:*",
"koatty_core": "workspace:*",
"koatty_lib": "workspace:*",
"koatty_logger": "workspace:*",
"koatty_store": "workspace:*"
},
"peerDependencies": {
"koatty_container": "^2.0.6",
"koatty_core": "^2.1.6",
"koatty_lib": "^1.4.7",
"koatty_logger": "^2.8.3",
"koatty_store": "^2.0.4"
},
"types": "./dist/index.d.ts"
}