-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "react-fivem-hooks",
"version": "1.0.4",
"description": "Essential React hooks for FiveM NUI development written in Typescript",
"main": "dist/index.js",
"repository": "git@github.com:antonstjernquist/react-fivem-hooks.git",
"author": "Anton Stjernquist <antonstjernquist@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"dependencies": {
"esbuild": "^0.19.12",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.3.2"
},
"scripts": {
"build": "tsc",
"test": "vitest"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^11.2.7",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@vitejs/plugin-react": "^4.3.1",
"global-jsdom": "^8.1.0",
"jsdom": "^16.7.0",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"vite": "^5.4.7",
"vitest": "^2.1.1"
}
}