-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.67 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.67 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@vue/test-utils",
"version": "2.4.10",
"homepage": "https://github.com/vuejs/test-utils",
"license": "MIT",
"author": {
"name": "Lachlan Miller",
"email": "lachlan.miller.1990@outlook.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/test-utils.git"
},
"files": [
"dist",
"README.md",
"dist/index.d.ts"
],
"main": "dist/vue-test-utils.cjs.js",
"module": "dist/vue-test-utils.esm-bundler.mjs",
"types": "dist/src/index.d.ts",
"unpkg": "dist/vue-test-utils.browser.js",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"node": "./dist/vue-test-utils.cjs.js",
"import": "./dist/vue-test-utils.esm-bundler.mjs",
"require": "./dist/vue-test-utils.cjs.js",
"browser": "./dist/vue-test-utils.browser.js",
"default": "./dist/vue-test-utils.cjs.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"test:build": "vitest --mode test-build",
"tsd": "tsc -p test-dts/tsconfig.tsd.json",
"tsc:docs": "vue-tsc -p docs/.vitepress/tsconfig.vitepress.json",
"build": "rollup -c rollup.config.ts --bundleConfigAsCjs",
"prepare": "rollup -c rollup.config.ts --bundleConfigAsCjs",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format-check": "oxfmt --check",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:translation:compare": "v-translation compare --status-file=docs/.vitepress/translation-status.json --path={docs/index.md,docs/api/index.md,docs/guide,docs/installation,docs/migration}",
"docs:translation:update": "v-translation update --status-file=docs/.vitepress/translation-status.json",
"docs:translation:status": "v-translation status --status-file=docs/.vitepress/translation-status.json",
"vue-tsc": "vue-tsc --noEmit -p tsconfig.volar.json",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"js-beautify": "^1.14.9",
"vue-component-type-helpers": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-replace": "6.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@types/js-beautify": "1.14.3",
"@types/node": "24.12.4",
"@vitejs/plugin-vue": "6.0.6",
"@vitejs/plugin-vue-jsx": "5.1.5",
"@vitest/coverage-v8": "4.1.6",
"@vue/compat": "3.5.34",
"@vue/compiler-dom": "3.5.34",
"@vue/compiler-sfc": "3.5.34",
"@vue/server-renderer": "3.5.34",
"husky": "9.1.7",
"jsdom": "29.1.1",
"jsdom-global": "3.0.2",
"lint-staged": "17.0.4",
"oxfmt": "0.50.0",
"oxlint": "1.64.0",
"pkg-pr-new": "0.0.74",
"reflect-metadata": "0.2.2",
"rollup": "4.60.3",
"tslib": "2.8.1",
"typescript": "6.0.3",
"unplugin-vue-components": "32.0.0",
"vite": "8.0.12",
"vitepress": "1.6.4",
"vitepress-translation-helper": "0.2.2",
"vitest": "4.1.6",
"vue": "3.5.34",
"vue-class-component": "8.0.0-rc.1",
"vue-router": "5.0.7",
"vue-tsc": "3.2.9",
"vuex": "4.1.0"
},
"peerDependencies": {
"@vue/compiler-dom": "3.x",
"@vue/server-renderer": "3.x",
"vue": "3.x"
},
"peerDependenciesMeta": {
"@vue/server-renderer": {
"optional": true
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"oxlint --fix",
"oxfmt --no-error-on-unmatched-pattern"
],
"*.md": [
"oxfmt --no-error-on-unmatched-pattern"
]
},
"packageManager": "pnpm@11.1.1"
}