-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1008 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1008 Bytes
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
{
"name": "reactjs-useai",
"version": "1.0.1",
"description": "A React hook to easily call AI endpoints with loading and error handling.",
"keywords": [
"react",
"hook",
"ai",
"api",
"useAi",
"reactjs"
],
"main": "dist/useAi.js",
"types": "dist/useAi.d.ts",
"license": "MIT",
"author": "Wolf Developer",
"scripts": {
"build": "jest && tsc",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wolfdev1337/reactjs-useai.git"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/react": "^18 || ^19",
"@types/react-dom": "^18 || ^19",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.3.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": ">=17.0.0"
}
}