-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.66 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@web-widget/shared-cache",
"version": "1.1.0",
"description": "An implementation of the web Cache API using LRU",
"keywords": [
"Cache",
"caches",
"fetch",
"WinterCG"
],
"exports": {
".": {
"types": "./dist/shared-cache.d.ts",
"development": "./src/index.ts",
"default": "./dist/shared-cache.js"
}
},
"scripts": {
"build": "pnpm exec tsup",
"changeset": "changeset",
"clean:build": "rm -rf dist",
"clean:node": "rm -rf node_modules",
"contributors": "git-authors-cli && finepack",
"coverage": "c8 report",
"coverage:html": "NODE_OPTIONS=--experimental-vm-modules pnpm exec jest --coverage",
"dev": "pnpm exec tsup --watch",
"lint": "eslint .",
"lockfile": "pnpm install --lockfile && git add pnpm-lock.yaml && git commit -m \"build: regenerate lock\"",
"prebuild": "pnpm run clean:build",
"prettier": "prettier **/*.{ts,tsx,js,vue} --write",
"test": "NODE_OPTIONS=--experimental-vm-modules c8 jest",
"update": "pnpm -r exec ncu -- --upgrade && ncu -- --upgrade",
"update:check": "pnpm -r exec ncu -- --errorLevel 2 && ncu -- --errorLevel 2",
"version:prepare": "changeset version && pnpm install --no-frozen-lockfile",
"version:publish": "changeset publish",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-widget/shared-cache.git"
},
"author": "aui",
"license": "MIT",
"bugs": {
"url": "https://github.com/web-widget/shared-cache/issues"
},
"homepage": "https://github.com/web-widget/shared-cache#readme",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.3",
"c8": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"jest": "^29.6.2",
"jest-environment-miniflare": "^2.14.2",
"miniflare": "^3.20240129.1",
"prettier": "latest",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "latest",
"@rdfjs/types": "^1.0.1",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.3.0",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"ts-node": "^10.4.0",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^3.17.1",
"lru-cache": "^10.2.0"
},
"dependencies": {
"@web-widget/http-cache-semantics": "^1.2.0",
"@web-widget/helpers": "^1.10.37"
},
"packageManager": "pnpm@8.4.0",
"publishConfig": {
"access": "public",
"exports": {
".": {
"types": "./dist/shared-cache.d.ts",
"default": "./dist/shared-cache.js"
}
}
},
"type": "module",
"files": [
"dist"
]
}