|
1 | 1 | { |
2 | 2 | "name": "esbuild-cf-functions-plugin", |
| 3 | + "type": "module", |
3 | 4 | "description": "A plugin to configure ESBuild for building code compatible with CloudFront Functions", |
4 | 5 | "version": "1.1.0", |
5 | 6 | "author": "BeeeQueue <adam@haglund.dev>", |
|
20 | 21 | "bundler", |
21 | 22 | "plugin" |
22 | 23 | ], |
23 | | - "packageManager": "pnpm@9.15.2", |
| 24 | + "packageManager": "pnpm@10.4.0", |
24 | 25 | "engines": { |
25 | 26 | "node": ">=18" |
26 | 27 | }, |
|
33 | 34 | "types": "./dist/plugin.d.ts", |
34 | 35 | "exports": { |
35 | 36 | ".": { |
36 | | - "require": "./dist/plugin.js", |
37 | | - "import": "./dist/plugin.mjs", |
38 | | - "types": "./dist/plugin.d.ts" |
39 | | - } |
| 37 | + "require": { |
| 38 | + "types": "./dist/plugin.d.ts", |
| 39 | + "default": "./dist/plugin.js" |
| 40 | + }, |
| 41 | + "import": { |
| 42 | + "types": "./dist/plugin.d.mts", |
| 43 | + "default": "./dist/plugin.mjs" |
| 44 | + } |
| 45 | + }, |
| 46 | + "./package.json": "./package.json" |
40 | 47 | }, |
41 | 48 | "simple-git-hooks": { |
42 | 49 | "pre-commit": "pnpm lint-staged" |
|
60 | 67 | "esbuild": ">=0.14.46" |
61 | 68 | }, |
62 | 69 | "devDependencies": { |
63 | | - "@beequeue/eslint-plugin": "4.0.1", |
| 70 | + "@antfu/eslint-config": "4.2.0", |
64 | 71 | "@changesets/changelog-github": "0.5.0", |
65 | | - "@changesets/cli": "2.27.11", |
| 72 | + "@changesets/cli": "2.27.12", |
66 | 73 | "@tsconfig/node18": "18.2.4", |
67 | | - "@types/node": "20.17.10", |
68 | | - "@vitest/coverage-v8": "2.1.8", |
| 74 | + "@types/node": "22.13.4", |
| 75 | + "@vitest/coverage-v8": "3.0.5", |
69 | 76 | "dotenv": "16.4.7", |
70 | | - "eslint": "8.57.0", |
71 | | - "lint-staged": "15.2.9", |
| 77 | + "eslint": "9.20.1", |
| 78 | + "lint-staged": "15.4.3", |
72 | 79 | "nanoid": "5.0.9", |
73 | | - "prettier": "3.4.2", |
| 80 | + "prettier": "4.0.0-alpha.10", |
74 | 81 | "simple-git-hooks": "2.11.1", |
75 | 82 | "ts-dedent": "2.2.0", |
76 | | - "tsup": "8.3.5", |
77 | | - "typescript": "5.7.2", |
78 | | - "vitest": "2.1.8" |
| 83 | + "tsup": "8.3.6", |
| 84 | + "typescript": "5.7.3", |
| 85 | + "vitest": "3.0.5" |
79 | 86 | }, |
80 | 87 | "pnpm": { |
81 | 88 | "overrides": { |
82 | | - "array-includes": "npm:@nolyfill/array-includes@latest", |
83 | | - "array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest", |
84 | | - "hasown": "npm:@nolyfill/hasown@latest", |
85 | | - "object.assign": "npm:@nolyfill/object.assign@latest", |
86 | | - "object.values": "npm:@nolyfill/object.values@latest" |
87 | | - } |
| 89 | + "@eslint/markdown": "-", |
| 90 | + "@stylistic/eslint-plugin": "-", |
| 91 | + "eslint-plugin-jsonc": "-", |
| 92 | + "eslint-plugin-toml": "-", |
| 93 | + "eslint-plugin-vue": "-", |
| 94 | + "eslint-processor-vue-blocks": "-", |
| 95 | + "eslint-plugin-yml": "-", |
| 96 | + "jsonc-eslint-parser": "-", |
| 97 | + "toml-eslint-parser": "-", |
| 98 | + "yaml-eslint-parser": "-", |
| 99 | + "is-core-module": "npm:@nolyfill/is-core-module@^1", |
| 100 | + "safer-buffer": "npm:@nolyfill/safer-buffer@^1" |
| 101 | + }, |
| 102 | + "ignoredBuiltDependencies": [ |
| 103 | + "simple-git-hooks" |
| 104 | + ], |
| 105 | + "onlyBuiltDependencies": [ |
| 106 | + "esbuild" |
| 107 | + ] |
88 | 108 | } |
89 | 109 | } |
0 commit comments