-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.77 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
{
"name": "@mntm/multipart",
"version": "2.0.2",
"author": {
"name": "Anton Petrov",
"email": "im@petrov.engineer",
"url": "https://petrov.engineer"
},
"description": "Probably the fastest most compatible lexer/parser/stringifier for multipart/form-data.",
"license": "MIT",
"keywords": [
"lexer",
"perse",
"parser",
"stringify",
"stringifier",
"multipart",
"form-data",
"formdata"
],
"homepage": "https://github.com/maxi-team/multipart",
"bugs": "https://github.com/maxi-team/multipart",
"repository": {
"type": "git",
"url": "https://github.com/maxi-team/multipart.git"
},
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts"
}
},
"sideEffects": false,
"scripts": {
"build:clear": "shx rm -rf lib",
"build:types": "tsc",
"build:esm": "esbuild src/index.ts --bundle --external:buffer --external:mime --platform=node --target=es6 --minify --keep-names --outfile=lib/index.mjs --format=esm",
"build:cjs": "esbuild src/index.ts --bundle --external:buffer --external:mime --platform=node --target=es6 --minify --keep-names --outfile=lib/index.cjs --format=cjs",
"build": "yarn run build:clear && yarn run build:types && yarn run build:esm && yarn run build:cjs"
},
"devDependencies": {
"@mntm/eslint-config": "^0.4.3",
"@types/mime": "^2.0.3",
"@types/node": "^16.11.6",
"esbuild": "^0.13.12",
"eslint": "^7.32.0",
"mime": "^3.0.0",
"shx": "^0.3.3",
"typescript": "^4.4.4"
},
"peerDependencies": {
"mime": "^3.0.0"
},
"peerDependenciesMeta": {
"mime": {
"optional": false
}
}
}