-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.99 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
{
"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": "[email protected]:MathRobin/lambda-returns.git",
"author": "MathRobin <[email protected]>",
"license": "MIT",
"sideEffects": false,
"packageManager": "[email protected]",
"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.146"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-syntax-import-assertions": "7.26.0",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/js": "9.17.0",
"@types/babel__core": "7.20.5",
"@types/lodash-es": "4.17.12",
"@types/node": "22.10.2",
"@vitest/coverage-v8": "2.1.8",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"lodash-es": "4.17.21",
"pkgroll": "2.6.0",
"prettier": "3.4.2",
"tsx": "4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "8.18.2",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
}
}