-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "remove-undefined-objects",
"version": "8.0.1",
"description": "Remove undefined properties and empty arrays from an object",
"bugs": {
"url": "https://github.com/readmeio/remove-undefined-objects/issues"
},
"license": "MIT",
"author": "Jon Ursenbach <jon@ursenba.ch>",
"repository": {
"type": "git",
"url": "git://github.com/readmeio/remove-undefined-objects.git"
},
"type": "module",
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"format": "npx oxlint --fix && npx oxfmt --write",
"lint": "tsc --noEmit && npx oxlint && npx oxfmt --check .",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"pretest": "npm run lint",
"test": "vitest run --coverage"
},
"devDependencies": {
"@readme/oxlint-config": "^1.1.2",
"@vitest/coverage-v8": "^4.1.5",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=22"
}
}