-
Notifications
You must be signed in to change notification settings - Fork 244
/
package.json
128 lines (128 loc) · 3.71 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
{
"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": {
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-replace": "6.0.1",
"@rollup/plugin-typescript": "12.1.1",
"@types/js-beautify": "1.14.3",
"@types/node": "22.8.4",
"@vitejs/plugin-vue": "5.1.4",
"@vitejs/plugin-vue-jsx": "4.0.1",
"@vitest/coverage-v8": "2.1.4",
"@vue/compat": "3.5.12",
"@vue/compiler-dom": "3.5.12",
"@vue/compiler-sfc": "3.5.12",
"@vue/server-renderer": "3.5.12",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"jsdom": "25.0.1",
"jsdom-global": "3.0.2",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"reflect-metadata": "0.2.2",
"rollup": "4.24.3",
"tslib": "2.8.0",
"typescript": "5.6.3",
"typescript-eslint": "8.12.2",
"unplugin-vue-components": "0.27.4",
"vite": "5.4.10",
"vitepress": "1.4.2",
"vitepress-translation-helper": "0.2.1",
"vitest": "2.1.4",
"vue": "3.5.12",
"vue-class-component": "8.0.0-rc.1",
"vue-router": "4.4.5",
"vue-tsc": "2.1.10",
"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",
"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"
]
}
}
}