-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.75 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.75 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
{
"name": "esbuild-cf-functions-plugin",
"type": "module",
"description": "A plugin to configure ESBuild for building code compatible with CloudFront Functions",
"version": "1.1.2",
"author": "BeeeQueue <adam@haglund.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/beeequeue/esbuild-cf-functions-plugin.git"
},
"homepage": "https://github.com/BeeeQueue/esbuild-cf-functions-plugin",
"keywords": [
"aws",
"cloudfront",
"functions",
"function",
"lambda",
"esbuild",
"compiler",
"bundler",
"plugin"
],
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=20.19"
},
"files": [
"dist"
],
"exports": {
".": "./dist/plugin.js",
"./package.json": "./package.json"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,json5,yaml,yml,css,scss,md}": [
"prettier --write"
]
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint": "eslint",
"test": "vitest run",
"test:dev": "vitest",
"typecheck": "tsc --noEmit --project tsconfig.json",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"esbuild": ">=0.14.46"
},
"devDependencies": {
"@antfu/eslint-config": "7.4.3",
"@changesets/changelog-github": "1.0.0-next.1",
"@changesets/cli": "3.0.0-next.1",
"@e18e/eslint-plugin": "0.2.0",
"@tsconfig/node18": "18.2.6",
"@types/node": "22.19.13",
"@vitest/coverage-v8": "4.0.18",
"eslint": "10.0.0",
"lint-staged": "16.2.7",
"nanoid": "5.1.6",
"prettier": "3.8.1",
"simple-git-hooks": "2.13.1",
"ts-dedent": "2.2.0",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.18"
}
}