-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
109 lines (109 loc) · 2.7 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "formdata-node",
"version": "6.0.3",
"type": "module",
"description": "Spec-compliant FormData implementation for Node.js",
"repository": "octet-stream/form-data",
"sideEffects": false,
"keywords": [
"form-data",
"node",
"form",
"upload",
"files-upload",
"ponyfill"
],
"author": "Nick K. <io@octetstream.me>",
"license": "MIT",
"packageManager": "pnpm@9.4.0",
"engines": {
"node": ">= 18"
},
"main": "./lib/form-data.js",
"module": "./lib/browser.js",
"browser": "./lib/browser.js",
"exports": {
"./package.json": "./package.json",
".": {
"node": {
"import": {
"types": "./lib/form-data.d.ts",
"default": "./lib/form-data.js"
},
"require": {
"types": "./lib/form-data.d.cts",
"default": "./lib/form-data.cjs"
}
},
"browser": {
"import": {
"types": "./lib/browser.d.ts",
"default": "./lib/browser.js"
},
"require": {
"types": "./lib/browser.d.cts",
"default": "./lib/browser.cjs"
}
},
"default": {
"types": "./lib/form-data.d.ts",
"import": "./lib/form-data.js"
}
},
"./file-from-path": {
"import": {
"types": "./@lib/file-from-path.d.ts",
"default": "./lib/file-from-path.js"
},
"require": {
"types": "./@lib/file-from-path.d.cts",
"default": "./lib/file-from-path.cjs"
}
}
},
"types": "./lib/form-data.d.ts",
"typesVersions": {
"*": {
"file-from-path": [
"./lib/file-from-path.d.ts"
]
}
},
"scripts": {
"lint:types": "tsc --noEmit",
"lint": "pnpm biome lint --write --no-errors-on-unmatched",
"coverage": "c8 pnpm test",
"report:html": "c8 -r=html pnpm test",
"ci": "c8 pnpm test && c8 report --reporter=json",
"build": "pnpm exec del-cli lib && pnpm exec tsup",
"test": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" ava",
"release": "pnpm run build && pnpm exec changeset publish",
"prepare": "npx is-in-ci || husky install"
},
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"@changesets/cli"
]
}
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@types/node": "20.14.9",
"@types/sinon": "17.0.3",
"ava": "6.1.3",
"c8": "10.1.2",
"cross-env": "7.0.3",
"del-cli": "5.1.0",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"node-fetch": "3.3.2",
"sinon": "18.0.0",
"ts-expect": "1.3.0",
"ts-node": "10.9.2",
"tsup": "8.1.0",
"typescript": "5.5.3"
}
}