-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.88 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.88 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@open-core/framework",
"version": "0.3.2",
"description": "Secure, Event-Driven, OOP Engine for FiveM. Stop scripting, start engineering.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/newcore-network/opencore.git"
},
"homepage": "https://opencorejs.dev",
"bugs": {
"url": "https://github.com/newcore-network/opencore/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/kernel/index.d.ts",
"import": "./dist/kernel/index.js",
"require": "./dist/kernel/index.js"
},
"./server": {
"types": "./dist/runtime/server/index.d.ts",
"import": "./dist/runtime/server/index.js",
"require": "./dist/runtime/server/index.js"
},
"./client": {
"types": "./dist/runtime/client/index.d.ts",
"import": "./dist/runtime/client/index.js",
"require": "./dist/runtime/client/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"check": "biome check .",
"check:fix": "biome check --write .",
"check:fix:unsafe": "biome check --write --unsafe",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"typecheck": "tsc -p tsconfig.build.json --noEmit && tsc -p tsconfig.test.json --noEmit",
"test": "npx vitest run --project unit --project integration --project e2e",
"test:ci": "npx vitest run --project unit --project integration",
"test:watch": "npx vitest --project unit --project integration --project e2e",
"test:unit": "npx vitest run --project unit",
"test:integration": "npx vitest run --project integration",
"test:e2e": "npx vitest run --project e2e",
"test:coverage": "npx vitest run --coverage",
"bench": "npx tsx benchmark/index.ts",
"bench:core": "npx tsx benchmark/index.ts --core",
"bench:load": "npx vitest run --project benchmark",
"bench:all": "npx tsx benchmark/index.ts --all"
},
"keywords": [
"framework",
"opencore",
"fivem",
"typescript",
"roleplay"
],
"author": "OpenCore Team",
"license": "MPL-2.0",
"packageManager": "pnpm@10.13.1",
"dependencies": {
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0",
"uuid": "^13.0.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@citizenfx/client": "2.0.22443-1",
"@citizenfx/server": "2.0.22443-1",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"dependency-cruiser": "^17.3.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"graphviz": "^0.0.9",
"tinybench": "^2.9.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}