-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.33 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.33 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
{
"name": "@remix-run/form-data-parser",
"version": "0.16.0",
"description": "A request.formData() wrapper with streaming file upload handling",
"author": "Michael Jackson <mjijackson@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/remix-run/remix.git",
"directory": "packages/form-data-parser"
},
"homepage": "https://github.com/remix-run/remix/tree/main/packages/form-data-parser#readme",
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"dist",
"src",
"!src/**/*.test.ts"
],
"type": "module",
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
}
},
"dependencies": {
"@remix-run/multipart-parser": "workspace:^"
},
"devDependencies": {
"@remix-run/data-schema": "workspace:^",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:"
},
"scripts": {
"build": "tsgo -p tsconfig.build.json",
"clean": "git clean -fdX",
"prepublishOnly": "pnpm run build",
"test": "node --test",
"typecheck": "tsgo --noEmit"
},
"keywords": [
"form-data",
"FormData",
"multipart",
"parser"
]
}