-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "@toapi/react",
"version": "1.3.4",
"author": {
"name": "Michel Smola",
"email": "michel.smola@farbenmeer.de"
},
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/toapi-js/toapi.git"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"release": "pnpm run build && pnpm publish --no-git-checks",
"test": "vitest run"
},
"dependencies": {
"@toapi/common": "workspace:^"
},
"devDependencies": {
"@happy-dom/global-registrator": "^20.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.0",
"@toapi/client": "workspace:^",
"@toapi/server": "workspace:^",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"react": "^19.1.1",
"react-dom": "^19.3.0",
"react-error-boundary": "^6.1.5",
"vitest": "^5.0.0",
"zod": "^4.1.5"
},
"peerDependencies": {
"react": "^19.1.1",
"typescript": "^5 || ^6.0.0 || ^7.0.0"
}
}