-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "unhead-monorepo",
"type": "module",
"version": "2.0.0-alpha.2",
"private": "true",
"packageManager": "[email protected]",
"author": "Harlan Wilton <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/unjs/unhead.git"
},
"scripts": {
"build": "pnpm -r --filter=./packages/** run build",
"stub": "pnpm -r --parallel --filter=./packages/** run stub",
"test": "vitest",
"test:memory": "vitest --expose-gc run memory",
"bump": "bumpp package.json packages/*/package.json --commit --push --tag",
"release": "pnpm build && pnpm bump && pnpm -r publish --no-git-checks",
"release:next": "pnpm build && pnpm bump && pnpm -r publish --no-git-checks --tag next",
"lint": "eslint . --fix",
"benchmark": "vitest bench"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.7",
"acorn-loose": "^8.4.0",
"bumpp": "^9.10.1",
"eslint": "^9.18.0",
"fs-extra": "^11.3.0",
"jsdom": "^26.0.0",
"typescript": "5.7.3",
"unbuild": "^3.3.1",
"utility-types": "^3.11.0",
"vitest": "^2.1.8",
"vue": "^3.5.13"
},
"resolutions": {
"@unhead/addons": "workspace:*",
"@unhead/dom": "workspace:*",
"@unhead/schema": "workspace:*",
"@unhead/schema-org": "workspace:*",
"@unhead/shared": "workspace:*",
"@unhead/ssr": "workspace:*",
"@unhead/vue": "workspace:*",
"unhead": "workspace:*"
}
}