|
1 | 1 | { |
2 | | - "name": "cache-handlers", |
3 | | - "version": "0.0.0", |
4 | | - "description": "Modern CDN cache primitives", |
5 | | - "type": "module", |
6 | | - "main": "dist/index.js", |
7 | | - "files": [ |
8 | | - "dist" |
9 | | - ], |
10 | | - "exports": { |
11 | | - ".": "./dist/index.js" |
12 | | - }, |
13 | | - "scripts": { |
14 | | - "build": "tsdown", |
15 | | - "dev": "tsdown --watch", |
16 | | - "prepublishOnly": "node --run build", |
| 2 | + "name": "cache-handlers", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "Modern CDN cache primitives", |
| 5 | + "type": "module", |
| 6 | + "main": "dist/index.js", |
| 7 | + "files": [ |
| 8 | + "dist", |
| 9 | + "src" |
| 10 | + ], |
| 11 | + "exports": { |
| 12 | + ".": { |
| 13 | + "deno": "./src/index.ts", |
| 14 | + "import": { |
| 15 | + "types": "./dist/index.d.ts", |
| 16 | + "default": "./dist/index.js" |
| 17 | + } |
| 18 | + } |
| 19 | + }, |
| 20 | + "scripts": { |
| 21 | + "build": "tsdown", |
| 22 | + "dev": "tsdown --watch", |
| 23 | + "prepublishOnly": "node --run build", |
17 | 24 | "lint": "deno lint", |
18 | | - "test": "pnpm run '/^test:.*/'", |
19 | | - "test:deno": "deno test test/deno", |
20 | | - "test:node": "vitest run", |
21 | | - "test:workerd": "vitest run --config vitest.workerd.config.ts" |
22 | | - }, |
23 | | - "engines": { |
24 | | - "node": ">=20" |
25 | | - }, |
26 | | - "devDependencies": { |
27 | | - "@arethetypeswrong/core": "^0.18.2", |
28 | | - "@cloudflare/vitest-pool-workers": "^0.8.60", |
29 | | - "publint": "^0.3.12", |
30 | | - "tsdown": "^0.13.3", |
31 | | - "undici": "^7.13.0", |
32 | | - "vitest": "^3.2.4" |
33 | | - }, |
34 | | - "repository": { |
35 | | - "type": "git", |
36 | | - "url": "git+https://github.com/ascorbic/cache-primitives.git", |
37 | | - "directory": "packages/cache-handlers" |
38 | | - }, |
39 | | - "homepage": "https://github.com/ascorbic/cdn-cache-control", |
40 | | - "keywords": [], |
41 | | - "author": "Matt Kane", |
42 | | - "license": "MIT" |
| 25 | + "test": "pnpm run '/^test:.*/'", |
| 26 | + "test:deno": "deno test test/deno", |
| 27 | + "test:node": "vitest run", |
| 28 | + "test:workerd": "vitest run --config vitest.workerd.config.ts" |
| 29 | + }, |
| 30 | + "engines": { |
| 31 | + "node": ">=20" |
| 32 | + }, |
| 33 | + "devDependencies": { |
| 34 | + "@arethetypeswrong/core": "^0.18.2", |
| 35 | + "@cloudflare/vitest-pool-workers": "^0.8.60", |
| 36 | + "publint": "^0.3.12", |
| 37 | + "tsdown": "^0.13.3", |
| 38 | + "undici": "^7.13.0", |
| 39 | + "vitest": "^3.2.4" |
| 40 | + }, |
| 41 | + "repository": { |
| 42 | + "type": "git", |
| 43 | + "url": "git+https://github.com/ascorbic/cache-primitives.git", |
| 44 | + "directory": "packages/cache-handlers" |
| 45 | + }, |
| 46 | + "homepage": "https://github.com/ascorbic/cdn-cache-control", |
| 47 | + "keywords": [], |
| 48 | + "author": "Matt Kane", |
| 49 | + "license": "MIT" |
43 | 50 | } |
0 commit comments