-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "@ts-stack/multer",
"version": "1.0.0",
"type": "module",
"description": "Multer is a node.js parser for handling `multipart/form-data`, which is primarily used for uploading files.",
"license": "MIT",
"repository": "https://github.com/ts-stack/multer",
"exports": "./dist/index.js",
"scripts": {
"build": "tsc -b tsconfig.build.json",
"build-test": "tsc -b tsconfig.e2e.json",
"test": "tsc -b tsconfig.e2e.json && npm run esm-jest",
"esm-jest": "node --experimental-vm-modules --no-warnings=ExperimentalWarning --enable-source-maps node_modules/jest/bin/jest.js"
},
"imports": {
"#lib/*": "./dist/*"
},
"keywords": [
"multipart",
"form-data",
"formdata",
"ts-stack"
],
"dependencies": {
"@fastify/busboy": "^3.0.0",
"@ts-stack/type-is": "^1.0.1",
"append-field": "^2.0.0",
"bytes": "^3.1.2",
"file-type": "^19.3.0",
"tempy": "^3.1.0"
},
"devDependencies": {
"@types/bytes": "^3.1.4",
"@types/eslint": "^9.6.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^9.8.0",
"form-data": "^4.0.0",
"get-stream": "^9.0.1",
"hasha": "^5.2.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"testdata-w3c-json-form": "^1.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.5.4"
},
"engines": {
"node": ">=20.0.6"
}
}