-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.9 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
{
"name": "fs-packages",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"audit": "npm audit",
"build": "npm run build --workspaces",
"changeset": "changeset",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint .",
"lint:pkg": "node scripts/lint-pkg.mjs",
"release": "npm run build && changeset publish",
"test": "vitest run",
"test:browser": "vitest run --config packages/ui-inputs/vitest.browser.config.ts",
"test:coverage": "vitest run --coverage",
"test:mutation": "npm run test:mutation --workspaces",
"typecheck": "npm run typecheck --workspaces",
"validate:dist": "node scripts/validate-dist.mjs",
"validate:workflows": "node scripts/validate-workflows.mjs",
"version": "changeset version"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@changesets/cli": "^2",
"@stryker-mutator/core": "^9",
"@stryker-mutator/vitest-runner": "^9",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/browser-playwright": "^4.1.10",
"@vitest/coverage-v8": "^4",
"axe-core": "^4.12.1",
"happy-dom": "^20.11.0",
"oxfmt": "^0.61.0",
"oxlint": "^1.74",
"playwright": "^1.61.1",
"publint": "^0.3.21",
"tsdown": "^0.22.12",
"typescript": "^6.0",
"vitepress": "^2.0.0-alpha.18",
"vitest": "^4",
"vitest-browser-vue": "^2.1.0"
},
"overrides": {
"esbuild": "^0.28.1",
"js-beautify": "^2.0.3",
"typed-rest-client": {
"qs": "^6.15.2"
},
"vue": "^3.5.38"
},
"engines": {
"node": ">=24.0.0"
}
}