-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.62 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
{
"name": "deepform",
"version": "1.0.1",
"description": "Parse FormData into deeply nested objects.",
"author": {
"name": "Alex Iglesias",
"url": "https://alexiglesias.me"
},
"homepage": "https://github.com/alexiglesias93/deepform#readme",
"bugs": {
"url": "https://github.com/alexiglesias93/deepform/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexiglesias93/deepform.git"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"license": "MIT",
"keywords": [
"form",
"data",
"form-data",
"FormData",
"parse",
"nested",
"object",
"array",
"deep",
"deepform",
"dset"
],
"scripts": {
"build": "tsup",
"lint": "prettier --check ./src",
"check": "tsc --noEmit",
"test": "node --experimental-strip-types --disable-warning=ExperimentalWarning --test ./src/**/*.test.ts",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@types/node": "^22.13.4",
"prettier": "^3.5.1",
"tsup": "^8.3.6",
"typescript": "~5.7.3",
"vite": "^6.1.0"
},
"dependencies": {
"dset": "^3.1.4"
}
}