-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
69 lines (69 loc) · 2.45 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "unhead-monorepo",
"type": "module",
"version": "2.0.0-rc.1",
"private": "true",
"packageManager": "pnpm@10.5.2",
"author": "Harlan Wilton <harlan@harlanzw.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/unjs/unhead.git"
},
"scripts": {
"test:bundle-size": "unbuild bench/bundle --config bench/bundle/client-build.config.ts && unbuild bench/bundle --config bench/bundle/server-build.config.ts",
"test:vue-bundle-size": "unbuild bench/bundle --config bench/bundle/vue-client-build.config.ts && unbuild bench/bundle --config bench/bundle/vue-server-build.config.ts",
"build": "pnpm -r --filter=./packages/** run build",
"stub": "pnpm -r --parallel --filter=./packages/** run stub",
"test": "pnpm lint && vue-tsc --noEmit && vitest",
"test:memory": "vitest --expose-gc run memory",
"bump": "bumpp package.json packages/*/package.json --commit --push --tag",
"release": "pnpm build && pnpm bump && pnpm publish --tag latest -r --no-git-checks",
"release:next": "pnpm build && pnpm bump && pnpm publish --tag next -r --no-git-checks",
"lint": "eslint . --fix",
"benchmark": "vitest bench",
"lint:docs": "pnpx markdownlint-cli ./docs && pnpx case-police 'docs/**/*.md' *.md",
"lint:docs:fix": "pnpx markdownlint-cli ./docs --fix && pnpx case-police 'docs/**/*.md' *.md --fix",
"twoslash:verify": "nuxt-content-twoslash verify --content-dir docs"
},
"devDependencies": {
"@antfu/eslint-config": "^4.4.0",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.7",
"acorn-loose": "^8.4.0",
"bumpp": "^10.0.3",
"devalue": "^5.1.1",
"eslint": "^9.21.0",
"fs-extra": "^11.3.0",
"jsdom": "^26.0.0",
"rollup-plugin-analyzer": "^4.0.0",
"typescript": "5.7.3",
"unbuild": "^3.5.0",
"utility-types": "^3.11.0",
"vitest": "^3.0.7",
"vue": "^3.5.13",
"vue-tsc": "^2.2.8"
},
"pnpm": {
"ignoredBuiltDependencies": [
"lmdb",
"msgpackr-extract"
],
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild"
]
},
"resolutions": {
"typescript": "5.7.3",
"@unhead/addons": "workspace:*",
"@unhead/angular": "workspace:*",
"@unhead/dom": "workspace:*",
"@unhead/schema": "workspace:*",
"@unhead/schema-org": "workspace:*",
"@unhead/shared": "workspace:*",
"@unhead/ssr": "workspace:*",
"@unhead/vue": "workspace:*",
"unhead": "workspace:*"
}
}