-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "@skyleague/esbuild-lambda",
"version": "1.0.0",
"description": "Building artifacts that are packageable for deployment to AWS Lambda.",
"repository": {
"type": "git",
"url": "https://github.com/skyleague/esbuild-lambda.git"
},
"license": "MIT",
"author": "SkyLeague Technologies B.V. <[email protected]> (https://skyleague.io)",
"sideEffects": false,
"type": "module",
"exports": {
".": "./.dist/index.js",
"./package.json": "./package.json",
"./*.js": "./.dist/*.js"
},
"types": "./.dist/index.d.ts",
"files": [".dist", "package.json"],
"scripts": {
"build": "tsc -p tsconfig.dist.json",
"build:docs": "npx typedoc",
"check:coverage": "vitest run --coverage=true",
"check:project": "node-standards lint",
"check:types": "tsc -p tsconfig.json",
"lint": "biome check",
"lint:fix": "node --run lint -- --write --unsafe",
"package": "rm -rf .dist && node --run build",
"prepare": "husky || true",
"test": "vitest run"
},
"dependencies": {
"@skyleague/axioms": "^6.1.0",
"deterministic-zip-ng": "^2.1.1",
"esbuild": ">=0.24.0"
},
"devDependencies": {
"@skyleague/node-standards": "^9.4.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"node-standards": {
"extends": "library"
}
}