-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.62 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
{
"name": "vue-querybuilder-monorepo",
"private": true,
"type": "module",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "bun run --filter @react-querybuilder/vue build",
"check": "bun run --filter @react-querybuilder/vue check && bun run check:examples",
"check:examples": "bun run --filter '@vue-querybuilder/example-*' check",
"check:exports": "bun run --filter @react-querybuilder/vue check:exports",
"check:all": "bun run fmt:check && bun run build && bun run check && bun run check:exports && bun run lint && bun run test:coverage && bun run conformance && bun run test:ssr",
"lint": "oxlint",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ssr": "bun run --filter @vue-querybuilder/example-nuxt test:ssr",
"conformance": "bun run --filter @react-querybuilder/vue conformance"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/user-event": "^14.6.4",
"@testing-library/vue": "^8.1.0",
"@types/bun": "^1.3.14",
"@types/node": "^26.2.0",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/coverage-v8": "^4.1.10",
"@vue/test-utils": "^2.4.11",
"jsdom": "^30.0.1",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"sass": "^1.102.0",
"typescript": "^5.9.3",
"vite": "^8.2.0",
"vitest": "^4.1.10",
"vitest-axe": "^0.1.0",
"vue": "^3.5.41",
"vue-tsc": "^3.3.9"
},
"overrides": {
"@testing-library/dom": "^10.4.1"
}
}