-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
71
72
{
"name": "keq-cache",
"version": "1.0.4",
"description": "Adds request caching capabilities similar to service workers",
"keywords": [
"keq",
"cache"
],
"license": "MIT",
"author": "Val.istar.Guo <[email protected]>",
"main": "dist/umd/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"exports": {
"require": "./dist/umd/src/index.js",
"import": "./dist/esm/src/index.js"
},
"homepage": "https://github.com/keq-request/keq-cache#readme",
"bugs": {
"url": "https://github.com/keq-request/keq-cache/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keq-request/keq-cache.git"
},
"scripts": {
"build": "npm run clean && ./build/build.sh",
"clean": "rm -rf ./dist/*",
"dev": "npm run clean && ./build/watch.sh",
"prepare": "ts-patch install -s && is-ci || husky",
"prepublishOnly": "npm run build",
"release": "standard-version",
"release:alpha": "standard-version --prerelease alpha",
"test": "jest"
},
"devDependencies": {
"@buka/eslint-config": "^2.1.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@jest/globals": "^29.7.0",
"@types/node": "^20.17.6",
"@types/ramda": "^0.30.2",
"eslint": "^9.15.0",
"fake-indexeddb": "^6.0.0",
"husky": "^9.1.6",
"idb": "^8.0.0",
"is-ci": "^3.0.1",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock": "^29.7.0",
"keq": "^2.8.7",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"typescript": "5.4.5",
"typescript-transform-paths": "^3.5.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"keq": "^2.8.2"
},
"dependencies": {
"dayjs": "^1.11.13",
"ramda": "^0.30.1",
"type-fest": "^4.27.0"
}
}