-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.7 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
{
"name": "@open-core/fivem-adapter",
"version": "1.0.4",
"description": "External FiveM adapter for OpenCore framework.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/newcore-network/opencore-fivem-adapter"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js",
"require": "./dist/server/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js",
"require": "./dist/client/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"check": "pnpx @biomejs/biome check .",
"check:fix": "pnpx @biomejs/biome check --write .",
"validate": "pnpm typecheck && pnpm build"
},
"keywords": [
"opencore",
"fivem",
"adapter",
"citizenfx"
],
"license": "MPL-2.0",
"packageManager": "pnpm@10.13.1",
"peerDependencies": {
"@open-core/framework": "^1.0.12",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@citizenfx/client": "2.0.28108-1",
"@citizenfx/server": "2.0.28108-1",
"@open-core/framework": "^1.0.12",
"@types/node": "^25.6.0",
"typescript": "^6.0.3"
},
"dependencies": {
"biome": "^0.3.3"
}
}