-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.49 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
{
"name": "mercury-composable",
"version": "4.3.28",
"description": "Composable foundation SDK",
"type": "module",
"engines": {
"node": ">= 20.18.1"
},
"main": "./dist/index.js",
"license": "Apache-2.0",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "node clean.js",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json && node copy-resource-files.js",
"build:watch": "tsc -w -p tsconfig.json",
"lint": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@types/body-parser": "^1.19.5",
"@types/busboy": "^1.5.4",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^5.0.0",
"@types/uuid": "^10.0.0",
"axios": "^1.13.5",
"body-parser": "^1.20.4",
"busboy": "^1.6.0",
"cookie-parser": "^1.4.7",
"events": "^3.3.0",
"express": "^4.22.1",
"form-data": "^4.0.4",
"msgpackr": "^1.11.2",
"uuid": "^11.1.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@vitest/coverage-v8": "^3.1.4",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "~5.8.2",
"typescript-eslint": "^8.31.1",
"vite": "^6.4.2",
"vitest": "^3.1.4",
"glob": "^12.0.0"
},
"overrides": {
"test-exclude": {
"glob": "^12.0.0"
}
}
}