-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
{
"name": "h3-defu",
"type": "module",
"version": "0.1.5",
"packageManager": "[email protected]",
"description": "A simple utility to deep merge objects that extends h3 body and query parameters passed.",
"license": "MIT",
"repository": "cpreston321/h3-defu",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "unbuild",
"release": "pnpm test && standard-version && git push --follow-tags && pnpm publish",
"test": "vitest run",
"test:coverage": "pnpm run test --coverage"
},
"peerDependencies": {
"h3": "^1.6.0"
},
"dependencies": {
"defu": "^6.1.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.2",
"@types/supertest": "latest",
"@vitest/coverage-v8": "^1.1.3",
"eslint": "npm:[email protected]",
"eslint-ts-patch": "8.56.0-0",
"h3": "^1.10.0",
"lint-staged": "^15.2.0",
"simple-git-hooks": "^2.9.0",
"standard-version": "latest",
"supertest": "latest",
"typescript": "latest",
"unbuild": "latest",
"vitest": "latest"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}