-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.12 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.12 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "next-merge-props",
"author": "Frank Cooke",
"description": "Compose and merge the resulting props object from Next.js getServerSideProps/getStaticProps",
"keywords": [
"next.js",
"ssr",
"ssg"
],
"repository": {
"type": "git",
"url": "git+https://github.com/platypusrex/next-merge-props.git"
},
"bugs": {
"url": "https://github.com/platypusrex/next-merge-props/issues"
},
"version": "1.2.0",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist/**"
],
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm clean && tsup",
"clean": "rimraf dist",
"clean:deps": "rimraf node_modules",
"check:types": "tsc --noEmit",
"test": "vitest run --coverage",
"lint": "pnpm biome lint",
"lint:fix": "pnpm biome lint --fix",
"format": "pnpm biome format",
"format:fix": "pnpm biome format --fix",
"prepare": "husky",
"version": "changeset version",
"ci": "pnpm run lint && pnpm run check:types && pnpm run build",
"prerelease": "pnpm run ci",
"release": "pnpm run prerelease && changeset publish && git push --follow-tags"
},
"peerDependencies": {
"next": ">=10.x"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.4",
"@vitest/coverage-v8": "^2.1.8",
"husky": "^9.1.7",
"next": "^15.1.3",
"rimraf": "^6.0.1",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"vitest-fetch-mock": "^0.4.3"
}
}