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