-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.39 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@mondaydotcomorg/monday-api-queue-sdk",
"version": "0.1.23",
"description": "A module for executing / consuming monday.com API requests at scale.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/mondaycom/monday-api-queue-sdk#readme",
"bugs": {
"url": "https://github.com/mondaycom/monday-api-queue-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mondaycom/monday-api-queue-sdk.git"
},
"author": "monday.com SE",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit",
"prettier": "prettier --check \"src/**/*.{ts,js,json,md}\"",
"prettier:fix": "prettier --write \"src/**/*.{ts,js,json,md}\"",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "eslint \"src/**/*.{js,ts}\" --fix",
"prepublish-and-build": "yarn install --frozen-lockfile && yarn build",
"release": "bumpp && npm publish",
"prepare": "husky"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.879.0",
"@aws-sdk/client-sqs": "^3.864.0",
"@aws-sdk/lib-storage": "^3.879.0",
"@mondaydotcomorg/api": "^14.0.0",
"aws-sdk": "^2.1692.0",
"axios": "^1.11.0",
"http-status-codes": "^2.3.0",
"sqs-consumer": "^12.0.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/node": "^22.15.17",
"@vitest/coverage-istanbul": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"bumpp": "^10.1.0",
"eslint": "^9.35.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jiti": "^2.5.1",
"lint-staged": "^16.3.2",
"prettier": "^3.6.2",
"tsdown": "^0.11.9",
"typescript": "^5.8.3",
"typescript-eslint": "^8.43.0",
"vitest": "^3.1.3"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"prettier --write",
"eslint --fix"
],
"src/**/*.{json,md}": [
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"rules": {
"@typescript-eslint/no-empty-object-type": "off",
"@typescript-eslint/no-empty-interface": "off"
}
}
}