-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.46 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.46 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
{
"private": true,
"name": "conform",
"license": "MIT",
"scripts": {
"build": "pnpm run --filter \"./packages/*\" \"/^build:.*/\"",
"dev": "pnpm run \"/^dev:.*/\"",
"dev:packages": "pnpm run --filter \"./packages/*\" \"/^dev:.*/\"",
"dev:playground": "pnpm --filter ./playground run dev",
"guide": "pnpm --filter ./guide run dev ",
"test": "pnpm run \"/^test:.*/\"",
"test:future": "vitest --project='conform-*'",
"test:api": "vitest --project=browser --project=node",
"test:e2e": "playwright test",
"version": "changeset version && pnpm install --lockfile-only && .github/version.sh",
"lint": "oxlint .",
"format": "oxfmt .",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@conform-to/dom": "workspace:*",
"@conform-to/react": "workspace:*",
"@conform-to/validitystate": "workspace:*",
"@conform-to/yup": "workspace:*",
"@conform-to/zod": "workspace:*",
"@playwright/test": "^1.49.1",
"@types/node": "^20.19.0",
"@vitest/browser": "^4.1.5",
"@vitest/browser-playwright": "^4.1.5",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"oxlint": "^1.61.0",
"oxfmt": "^0.46.0",
"pkg-pr-new": "^0.0.66",
"typescript": "^5.8.3",
"vitest": "^4.1.5",
"yup": "^0.32.11",
"zod": "^3.25.75"
},
"packageManager": "pnpm@9.1.0+sha256.22e36fba7f4880ecf749a5ca128b8435da085ecd49575e7fb9e64d6bf4fad394",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "oxlint --fix",
"*.{js,jsx,ts,tsx,css,json,yaml,md}": "oxfmt"
}
}