-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "merge",
"version": "2.1.2-next.0",
"description": "(recursive)? merging of (cloned)? objects.",
"keywords": [
"merge",
"recursive",
"extend",
"clone",
"object",
"browser"
],
"homepage": "https://github.com/swordev/merge",
"repository": {
"type": "git",
"url": "https://github.com/swordev/merge.git"
},
"license": "MIT",
"contributors": [
{
"name": "Juanra GM",
"email": "[email protected]",
"url": "https://github.com/juanrgm"
}
],
"main": "lib/index.js",
"files": [
"lib/index.d.ts"
],
"scripts": {
"build": "tsc --build tsconfig.build.json",
"check": "prettier --cache -c .",
"clean": "tsc --build tsconfig.build.json --clean",
"dev": "tsc --build tsconfig.build.json -w",
"format": "prettier --cache -w .",
"prepare": "husky install",
"release": "changeset publish",
"test": "vitest run"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"prettier-plugin-packagejson": "^2.4.5",
"prettier-plugin-sort-json": "^3.0.1",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
}
}