-
Notifications
You must be signed in to change notification settings - Fork 906
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.69 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.69 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
{
"name": "@vuepress/e2e",
"version": "2.0.0-rc.30",
"private": true,
"type": "module",
"scripts": {
"docs:build": "vuepress build docs --clean-cache --clean-temp",
"docs:build:rspack": "cross-env E2E_BUNDLER=rspack pnpm docs:build",
"docs:build:webpack": "cross-env E2E_BUNDLER=webpack pnpm docs:build",
"docs:clean": "rimraf docs/.vuepress/.temp docs/.vuepress/.cache docs/.vuepress/dist",
"docs:dev": "vuepress dev docs --clean-cache --clean-temp",
"docs:dev:rspack": "cross-env E2E_BUNDLER=rspack pnpm docs:dev",
"docs:dev:webpack": "cross-env E2E_BUNDLER=webpack pnpm docs:dev",
"docs:serve": "serve -l 9080 docs/.vuepress/dist",
"e2e:build": "cross-env E2E_COMMAND=build playwright test",
"e2e:build:rspack": "cross-env E2E_COMMAND=build E2E_BUNDLER=rspack playwright test",
"e2e:build:webpack": "cross-env E2E_COMMAND=build E2E_BUNDLER=webpack playwright test",
"e2e:dev": "cross-env E2E_COMMAND=dev playwright test",
"e2e:dev:rspack": "cross-env E2E_COMMAND=dev E2E_BUNDLER=rspack playwright test",
"e2e:dev:webpack": "cross-env E2E_COMMAND=dev E2E_BUNDLER=webpack playwright test"
},
"dependencies": {
"@vuepress-e2e/conditional-exports": "file:./modules/conditional-exports",
"@vuepress-e2e/style-exports": "file:./modules/style-exports",
"@vuepress/bundler-rspack": "workspace:*",
"@vuepress/bundler-vite": "workspace:*",
"@vuepress/bundler-webpack": "workspace:*",
"sass": "^1.99.0",
"sass-embedded": "^1.99.0",
"sass-loader": "^16.0.7",
"vue": "catalog:vue",
"vuepress": "workspace:*"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"cross-env": "^10.1.0",
"serve": "^14.2.6"
}
}