-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.5 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.5 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
{
"type": "module",
"version": "5.1.3",
"private": true,
"packageManager": "pnpm@10.33.0",
"description": "Nuxt SEO monorepo",
"author": {
"name": "Harlan Wilton",
"email": "harlan@harlanzw.com",
"url": "https://harlanzw.com/"
},
"license": "MIT",
"scripts": {
"build": "pnpm --filter './packages/**' build",
"dev": "pnpm --filter @nuxtjs/seo dev",
"dev:prepare": "pnpm --filter './packages/**' stub && pnpm --filter @nuxtjs/seo dev:prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "pnpm -r --parallel --filter './packages/**' run typecheck",
"test": "pnpm --filter nuxtseo-shared --filter @nuxtjs/seo test",
"test:run": "pnpm --filter nuxtseo-shared --filter @nuxtjs/seo test:run",
"test:attw": "pnpm --filter './packages/**' test:attw",
"release": "pnpm build && bumpp -r --output=CHANGELOG.md",
"sync:workflows": "node scripts/sync-workflows.mjs",
"prepare": "skilld prepare || true"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@arethetypeswrong/cli": "catalog:",
"bumpp": "catalog:",
"eslint": "catalog:",
"eslint-plugin-harlanzw": "catalog:",
"lint-staged": "catalog:",
"simple-git-hooks": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vue-tsc": "catalog:",
"zod": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,vue}": [
"pnpm exec eslint --fix"
]
}
}