-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.99 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.99 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
74
75
76
77
{
"name": "lambda-returns",
"version": "4.7.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"imports": {
"@": "./"
},
"repository": "git@github.com:MathRobin/lambda-returns.git",
"author": "MathRobin <mthrobin@gmail.com>",
"license": "MIT",
"sideEffects": false,
"packageManager": "yarn@4.5.3",
"type": "module",
"engines": {
"node": "22.5.1"
},
"scripts": {
"build": "pkgroll",
"lint": "eslint -c eslint.config.js",
"prepare": "husky",
"prettier": "prettier --check ./",
"prettier:write": "prettier --write ./",
"publish": "yarn build && git add dist package.json yarn.lock && yarn npm publish && git commit -m 'feat(version): bump' && git push && git status",
"test": "vitest run --reporter=verbose --coverage",
"gen": "yarn tsx src/scripts/res/gen"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"dependencies": {
"@types/aws-lambda": "8.10.161"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/eslint-parser": "7.28.6",
"@babel/plugin-syntax-import-assertions": "7.28.6",
"@commitlint/cli": "20.4.2",
"@commitlint/config-conventional": "20.4.2",
"@eslint/js": "9.39.3",
"@types/babel__core": "7.20.5",
"@types/lodash-es": "4.17.12",
"@types/node": "24.11.0",
"@vitest/coverage-v8": "2.1.9",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.39.3",
"eslint-config-prettier": "10.1.8",
"globals": "15.15.0",
"husky": "9.1.7",
"lint-staged": "16.3.1",
"lodash-es": "4.17.23",
"pkgroll": "2.27.0",
"prettier": "3.8.1",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.9"
}
}