-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.27 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
{
"name": "esbuild-cf-functions-plugin",
"description": "A plugin to configure ESBuild for building code compatible with CloudFront Functions",
"version": "1.1.0",
"author": "BeeeQueue <[email protected]>",
"license": "MIT",
"repository": {
"type": "github",
"url": "https://github.com/BeeeQueue/esbuild-cf-functions-plugin"
},
"homepage": "https://github.com/BeeeQueue/esbuild-cf-functions-plugin",
"keywords": [
"aws",
"cloudfront",
"functions",
"function",
"lambda",
"esbuild",
"compiler",
"bundler",
"plugin"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"files": [
"src",
"dist"
],
"main": "./dist/plugin.js",
"module": "./dist/plugin.mjs",
"types": "./dist/plugin.d.ts",
"exports": {
".": {
"require": "./dist/plugin.js",
"import": "./dist/plugin.mjs",
"types": "./dist/plugin.d.ts"
}
},
"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 src example/src",
"test": "vitest run",
"test:dev": "vitest",
"typecheck": "tsc --noEmit --project tsconfig.json",
"release": "pnpm build && pnpm changeset publish",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"esbuild": ">=0.14.46"
},
"devDependencies": {
"@beequeue/eslint-plugin": "4.0.1",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@tsconfig/node18": "18.2.4",
"@types/node": "20.17.5",
"@vitest/coverage-v8": "2.1.4",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"lint-staged": "15.2.9",
"nanoid": "5.0.8",
"prettier": "3.3.3",
"simple-git-hooks": "2.11.1",
"ts-dedent": "2.2.0",
"tsup": "8.3.5",
"typescript": "5.6.3",
"vitest": "2.1.4"
},
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"hasown": "npm:@nolyfill/hasown@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.values": "npm:@nolyfill/object.values@latest"
}
}
}