-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 3.52 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@wpnuxt/core",
"version": "1.0.0-edge.25",
"description": "WPNuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/wpnuxt/wpnuxt-core.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "nuxt-module-build build && pnpm build:web-types",
"build:web-types": "vue-docgen-web-types src/runtime/components/ ./dist/web-types.json",
"prepare": "nuxi prepare .",
"prepack": "nuxt-module-build build",
"generate": "pnpm --filter ./playground/ run generate",
"dev": "pnpm --filter ./playground/ run dev --host app.local",
"dev:build": "pnpm --filter ./playground/ run build",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:docs": "markdownlint ./docs && case-police 'docs/**/*.md' *.md",
"lint:docs:fix": "markdownlint ./docs --fix && case-police 'docs/**/*.md' *.md --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"coverage": "vitest run --coverage",
"typecheck": "vue-tsc --noEmit",
"typecheck:docs": "DOCS_TYPECHECK=true pnpm nuxi prepare && nuxt-content-twoslash verify --content-dir docs",
"release": "pnpm run lint && pnpm run prepack; release-it --git.tagExclude='*[-edge]*'",
"release-edge": "pnpm run lint && pnpm run prepack; release-it --preRelease=edge --config .release-it-edge.json",
"wp:cli": "docker-compose up wordpress-cli",
"wp:stop": "docker-compose down",
"wp:delete": "docker-compose down --volumes --remove-orphans --rmi local && rm -rf ./wordpress/files",
"wp-env": "wp-env",
"wp-env:create": "wp-env start --update && ./wordpress/wp-env-cli.sh",
"start": "pnpm run wp-env:create && pnpm run dev"
},
"dependencies": {
"@nuxt/kit": "3.14.1592",
"@vueuse/nuxt": "^12.1.0",
"defu": "^6.1.4",
"graphql": "^16.10.0",
"nuxt-graphql-middleware": "4.3.2",
"ohash": "^1.1.4",
"unstorage": "^1.14.1",
"vue-sanitize-directive": "^0.2.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/client-preset": "^4.5.1",
"@graphql-codegen/typescript-operations": "^4.4.0",
"@nuxt/devtools": "^1.6.4",
"@nuxt/eslint-config": "^0.7.4",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "3.14.1592",
"@nuxt/test-utils": "^3.15.1",
"@rollup/rollup-linux-arm64-gnu": "^4.29.1",
"@rollup/rollup-linux-arm64-musl": "^4.29.1",
"@types/node": "22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"@vue/test-utils": "^2.4.6",
"@wordpress/env": "^10.14.0",
"changelogen": "^0.5.7",
"markdownlint-cli": "^0.43.0",
"nuxt": "^3.14.1592",
"nuxt-content-twoslash": "^0.1.2",
"release-it": "^17.10.0",
"shiki": "^1.24.4",
"twoslash": "^0.2.12",
"typescript": "^5.7.2",
"untyped": "1.5.2",
"vite": "^6.0.5",
"vitest": "^2.1.8",
"vue-docgen-web-types": "^0.1.8",
"vue-tsc": "2.1.10"
},
"peerDependencies": {
"consola": "^3.2.3",
"graphql": "^16.9.0",
"knitwork": "^1.1.0",
"pathe": "^1.1.2",
"scule": "^1.3.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}