-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 928 Bytes
/
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
{
"name": "@k1eu/typed-formdata",
"version": "0.9.1",
"description": "A typed version of FormData",
"scripts": {
"test": "tsc --p ./tsconfig.test.json && vitest run --typecheck --dom",
"test:watch": "vitest --typecheck",
"build": "tsc --outDir dist --project tsconfig.lib.json"
},
"keywords": [
"FormData",
"forms",
"form",
"request",
"typed"
],
"author": "Tomasz Kielar <dev@k1eu.dev>",
"repository": {
"type": "git",
"url": "https://github.com/k1eu/typed-formdata.git"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"license": "MIT",
"packageManager": "pnpm@9.4.0",
"devDependencies": {
"@types/node": "^22.2.0",
"happy-dom": "^14.12.3",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vitest": "^2.0.5"
}
}