-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.66 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.66 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
{
"name": "h3-formidable",
"version": "1.0.0",
"description": "File upload parsing utility for h3 and Nuxt.",
"author": "Robert Soriano <sorianorobertc@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/wobsoriano/h3-formidable#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/h3-formidable.git"
},
"bugs": "https://github.com/wobsoriano/h3-formidable/issues",
"keywords": [
"h3",
"formidable",
"upload",
"form",
"multipar",
"connect"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./helpers": {
"types": "./helpers/index.d.ts",
"import": "./helpers/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"helpers"
],
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "pnpm build-fast --dts-resolve",
"lint": "eslint .",
"prepublishOnly": "pnpm build",
"release": "bumpp && npm publish",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"h3": "^1.8.0"
},
"dependencies": {
"formidable": "^3.5.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@types/formidable": "^3.4.3",
"@types/supertest": "^2.0.13",
"bumpp": "^9.2.0",
"eslint": "^8.50.0",
"h3": "^1.8.2",
"supertest": "^6.3.3",
"tsup": "7.2.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.5"
},
"eslintConfig": {
"extends": "@antfu"
}
}