-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "react-dom-form-monorepo",
"version": "0.0.0",
"private": true,
"description": "Composable react primitives for form-associated elements",
"type": "module",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"core": "npm --workspace=packages/core run",
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"lint": "npm run lint --workspaces --if-present",
"prepare": "playwright install --with-deps chromium",
"test": "vitest run --browser.headless",
"test:watch": "vitest",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcomuser/react-dom-form.git"
},
"author": "Marco Muser",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcomuser/react-dom-form/issues"
},
"homepage": "https://github.com/marcomuser/react-dom-form#readme",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/react": "^19.0.7",
"@vitest/browser": "^3.0.3",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"playwright": "^1.49.1",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vitest": "^3.0.3",
"vitest-browser-react": "^0.0.4"
}
}