-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@dldc/formi-react",
"version": "3.1.1",
"description": "React form hook",
"keywords": [
"react",
"form"
],
"homepage": "https://github.com/dldc-packages/formi-react#readme",
"bugs": {
"url": "https://github.com/dldc-packages/formi-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dldc-packages/formi-react.git"
},
"license": "MIT",
"author": "Etienne Dldc <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/mod.d.ts",
"import": "./dist/mod.js",
"require": "./dist/mod.cjs"
}
},
"main": "./dist/mod.js",
"types": "./dist/mod.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsup --format cjs,esm src/mod.ts --dts",
"build:watch": "tsup --watch --format cjs,esm src/mod.ts --dts",
"changelog": "auto-changelog --stdout --hide-credit true --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs",
"example:run": "vite example",
"lint": "prettier . --check && eslint . && tsc --noEmit",
"lint:fix": "prettier . --write . && eslint . --fix",
"release": "release-it --only-version",
"test": "pnpm run lint && vitest run --coverage",
"test:run": "vitest run",
"test:watch": "vitest --watch",
"test:watch:coverage": "vitest --watch --coverage",
"typecheck": "tsc",
"typecheck:watch": "tsc --watch"
},
"dependencies": {
"@dldc/formi": "npm:@jsr/dldc__formi@^5.1.0",
"use-sync-external-store": "^1.2.2"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/use-sync-external-store": "^0.0.6",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.4",
"auto-changelog": "^2.4.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^24.1.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"release-it": "^17.6.0",
"rimraf": "^6.0.1",
"tsup": "^8.2.2",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0",
"vite": "^5.3.4",
"vitest": "^2.0.4",
"zod": "^3.23.8"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17",
"zod": ">=3"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}