-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.4 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.4 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
{
"name": "virtual-scroll-workspace",
"type": "module",
"version": "0.10.3",
"private": true,
"packageManager": "pnpm@10.32.1",
"description": "Workspace for virtual scroll components",
"homepage": "https://github.com/pdanpdan/virtual-scroll#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pdanpdan/virtual-scroll.git"
},
"bugs": {
"url": "https://github.com/pdanpdan/virtual-scroll/issues"
},
"scripts": {
"dev": "pnpm --filter playground dev",
"build": "pnpm -r build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:ui": "vitest --ui --coverage.enabled --coverage.reporter=html",
"test:watch": "vitest",
"test:types": "pnpm --filter @pdanpdan/virtual-scroll test:types",
"test:coverage": "pnpm --filter @pdanpdan/virtual-scroll --dir packages/virtual-scroll test:coverage",
"test:all": "pnpm run lint && pnpm run test:types && pnpm run test:coverage",
"release": "release-it"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@release-it/conventional-changelog": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"eslint": "catalog:",
"eslint-plugin-vuejs-accessibility": "catalog:",
"release-it": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"vue-tsc": "catalog:"
}
}