-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.79 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.79 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@pubflow/react",
"version": "0.4.14",
"description": "React adapter for Pubflow framework with support for TanStack Router and SWR - Now with snake_case support",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"lint": "eslint src --ext .ts,.tsx",
"clean": "rimraf dist"
},
"keywords": [
"pubflow",
"react",
"remix",
"react-framework",
"swr",
"api",
"bridge",
"authentication"
],
"author": "Pubflow, Inc.",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@pubflow/core": "^0.4.6",
"@hookform/resolvers": "^3.3.2",
"react-hook-form": "^7.48.2",
"swr": "^2.2.4"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"optionalDependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.0",
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/ui": "^1.0.0",
"eslint": "^8.0.0",
"jsdom": "^23.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^5.0.0",
"rollup": "^3.0.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-peer-deps-external": "^2.0.0",
"tslib": "^2.8.1",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
}
}