-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.55 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.55 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@hypernym/merge",
"version": "0.3.7",
"author": "Hypernym Studio",
"description": "Type-safe deep merge utility.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hypernym-studio/merge.git"
},
"homepage": "https://github.com/hypernym-studio/merge",
"funding": "https://github.com/sponsors/ivodolenc",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"hyper",
"hypernym",
"deep",
"merge",
"deepmerge",
"type-safe",
"javascript",
"typescript",
"recursive-merge",
"deep-merge",
"recursive",
"infer",
"types"
],
"scripts": {
"dev": "bun --watch playground/merge.ts",
"build": "hyperbundler",
"lint": "oxlint",
"format": "oxfmt",
"test": "vitest -c test/vitest.config.ts",
"generate:changelog": "hyperchangelog",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"@types/node": ">=20.0.0",
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
},
"typescript": {
"optional": true
}
},
"devDependencies": {
"@hypernym/bundler": "^0.32.1",
"@hypernym/changelog": "^0.1.1",
"@hypernym/oxlint-config": "^0.1.0",
"@hypernym/tsconfig": "^2.7.0",
"@hypernym/utils": "^3.4.8",
"@types/node": "^25.5.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}