-
-
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.5 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.5 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": "formless",
"version": "0.0.0",
"private": true,
"description": "Universal form adapter for React. Supports RHF, Formik, TanStack Form with Zod schema validation",
"repository": {
"type": "git",
"url": "https://github.com/samithahansaka/formless.git"
},
"author": "",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"dev": "npm run dev --workspaces --if-present",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"lint": "eslint packages/*/src --ext .ts,.tsx",
"lint:fix": "eslint packages/*/src --ext .ts,.tsx --fix",
"typecheck": "npm run typecheck --workspaces --if-present",
"clean": "rm -rf packages/*/dist node_modules coverage",
"release": "npm publish --workspaces --access public",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"typescript": "^5.3.0",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=18.0.0"
}
}