-
Notifications
You must be signed in to change notification settings - Fork 264
/
Copy pathpackage.json
130 lines (130 loc) · 3.8 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@vue/test-utils",
"version": "2.4.6",
"license": "MIT",
"main": "dist/vue-test-utils.cjs.js",
"unpkg": "dist/vue-test-utils.browser.js",
"types": "dist/index.d.ts",
"module": "dist/vue-test-utils.esm-bundler.mjs",
"exports": {
".": {
"types": "./dist/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"
},
"files": [
"dist",
"README.md",
"dist/index.d.ts"
],
"dependencies": {
"js-beautify": "^1.14.9",
"vue-component-type-helpers": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "9.20.0",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-replace": "6.0.2",
"@rollup/plugin-typescript": "12.1.2",
"@types/js-beautify": "1.14.3",
"@types/node": "22.13.4",
"@vitejs/plugin-vue": "5.2.1",
"@vitejs/plugin-vue-jsx": "4.1.1",
"@vitest/coverage-v8": "3.0.6",
"@vue/compat": "3.5.13",
"@vue/compiler-dom": "3.5.13",
"@vue/compiler-sfc": "3.5.13",
"@vue/server-renderer": "3.5.13",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"husky": "9.1.7",
"jsdom": "26.0.0",
"jsdom-global": "3.0.2",
"lint-staged": "15.4.3",
"prettier": "3.5.1",
"reflect-metadata": "0.2.2",
"rollup": "4.34.8",
"tslib": "2.8.1",
"typescript": "5.7.3",
"typescript-eslint": "8.24.1",
"unplugin-vue-components": "28.4.0",
"vite": "6.1.1",
"vitepress": "1.6.3",
"vitepress-translation-helper": "0.2.2",
"vitest": "3.0.6",
"vue": "3.5.13",
"vue-class-component": "8.0.0-rc.1",
"vue-router": "4.5.0",
"vue-tsc": "2.2.2",
"vuex": "4.1.0"
},
"peerDependencies": {
"@vue/server-renderer": "3.x",
"vue": "3.x"
},
"peerDependenciesMeta": {
"@vue/server-renderer": {
"optional": true
}
},
"author": {
"name": "Lachlan Miller",
"email": "[email protected]"
},
"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": "eslint .",
"lint:fix": "pnpm run lint --fix",
"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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.md": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/test-utils.git"
},
"homepage": "https://github.com/vuejs/test-utils",
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/react",
"react",
"react-dom"
]
}
}
}