@open-core/framework 0.2.0-beta.1 → 0.2.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +98 -98
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,98 +1,98 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@open-core/framework",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Secure, Event-Driven, OOP Engine for FiveM. Stop scripting, start engineering.",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"type": "commonjs",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "https://github.com/newcore-network/opencore.git"
|
|
11
|
-
},
|
|
12
|
-
"homepage": "https://github.com/newcore-network/opencore",
|
|
13
|
-
"bugs": {
|
|
14
|
-
"url": "https://github.com/newcore-network/opencore/issues"
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist",
|
|
18
|
-
"README.md",
|
|
19
|
-
"LICENSE"
|
|
20
|
-
],
|
|
21
|
-
"exports": {
|
|
22
|
-
".": {
|
|
23
|
-
"types": "./dist/index.d.ts",
|
|
24
|
-
"import": "./dist/index.js",
|
|
25
|
-
"require": "./dist/index.js"
|
|
26
|
-
},
|
|
27
|
-
"./server": {
|
|
28
|
-
"types": "./dist/runtime/server/index.d.ts",
|
|
29
|
-
"import": "./dist/runtime/server/index.js",
|
|
30
|
-
"require": "./dist/runtime/server/index.js"
|
|
31
|
-
},
|
|
32
|
-
"./client": {
|
|
33
|
-
"types": "./dist/runtime/client/index.d.ts",
|
|
34
|
-
"import": "./dist/runtime/client/index.js",
|
|
35
|
-
"require": "./dist/runtime/client/index.js"
|
|
36
|
-
},
|
|
37
|
-
"./shared": {
|
|
38
|
-
"types": "./dist/kernel/shared/index.d.ts",
|
|
39
|
-
"import": "./dist/kernel/shared/index.js",
|
|
40
|
-
"require": "./dist/kernel/shared/index.js"
|
|
41
|
-
},
|
|
42
|
-
"./utils": {
|
|
43
|
-
"types": "./dist/kernel/utils/index.d.ts",
|
|
44
|
-
"import": "./dist/kernel/utils/index.js",
|
|
45
|
-
"require": "./dist/kernel/utils/index.js"
|
|
46
|
-
},
|
|
47
|
-
"./package.json": "./package.json"
|
|
48
|
-
},
|
|
49
|
-
"scripts": {
|
|
50
|
-
"build": "tsc -p tsconfig.build.json",
|
|
51
|
-
"watch": "tsc -p tsconfig.build.json --watch",
|
|
52
|
-
"check": "biome check .",
|
|
53
|
-
"check:fix": "biome check --write .",
|
|
54
|
-
"check:fix:unsafe": "biome check --write --unsafe",
|
|
55
|
-
"format": "biome format --write .",
|
|
56
|
-
"lint": "biome lint .",
|
|
57
|
-
"lint:fix": "biome lint --write .",
|
|
58
|
-
"typecheck": "tsc --noEmit",
|
|
59
|
-
"test": "npx vitest run --project unit --project integration --project e2e",
|
|
60
|
-
"test:watch": "npx vitest --project unit --project integration --project e2e",
|
|
61
|
-
"test:unit": "npx vitest run --project unit",
|
|
62
|
-
"test:integration": "npx vitest run --project integration",
|
|
63
|
-
"test:coverage": "npx vitest run --coverage",
|
|
64
|
-
"bench": "npx tsx benchmark/index.ts",
|
|
65
|
-
"bench:core": "npx tsx benchmark/index.ts --core",
|
|
66
|
-
"bench:load": "npx vitest run --project benchmark",
|
|
67
|
-
"bench:all": "npx tsx benchmark/index.ts --all"
|
|
68
|
-
},
|
|
69
|
-
"keywords": [
|
|
70
|
-
"framework",
|
|
71
|
-
"opencore",
|
|
72
|
-
"fivem",
|
|
73
|
-
"typescript",
|
|
74
|
-
"roleplay"
|
|
75
|
-
],
|
|
76
|
-
"author": "OpenCore Team",
|
|
77
|
-
"license": "MPL-2.0",
|
|
78
|
-
"packageManager": "pnpm@10.13.1",
|
|
79
|
-
"dependencies": {
|
|
80
|
-
"reflect-metadata": "^0.2.2",
|
|
81
|
-
"tsyringe": "^4.10.0",
|
|
82
|
-
"uuid": "^13.0.0",
|
|
83
|
-
"zod": "^4.1.13"
|
|
84
|
-
},
|
|
85
|
-
"devDependencies": {
|
|
86
|
-
"@biomejs/biome": "^2.3.10",
|
|
87
|
-
"@citizenfx/client": "2.0.22443-1",
|
|
88
|
-
"@citizenfx/server": "2.0.22443-1",
|
|
89
|
-
"@types/node": "^24.10.1",
|
|
90
|
-
"@vitest/coverage-v8": "^4.0.15",
|
|
91
|
-
"eslint-config-prettier": "^10.1.8",
|
|
92
|
-
"eslint-plugin-import": "^2.32.0",
|
|
93
|
-
"tinybench": "^2.7.0",
|
|
94
|
-
"tsx": "^4.19.2",
|
|
95
|
-
"typescript": "^5.9.3",
|
|
96
|
-
"vitest": "^4.0.15"
|
|
97
|
-
}
|
|
98
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@open-core/framework",
|
|
3
|
+
"version": "0.2.1-beta.1",
|
|
4
|
+
"description": "Secure, Event-Driven, OOP Engine for FiveM. Stop scripting, start engineering.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"type": "commonjs",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/newcore-network/opencore.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/newcore-network/opencore",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/newcore-network/opencore/issues"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENSE"
|
|
20
|
+
],
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"import": "./dist/index.js",
|
|
25
|
+
"require": "./dist/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./server": {
|
|
28
|
+
"types": "./dist/runtime/server/index.d.ts",
|
|
29
|
+
"import": "./dist/runtime/server/index.js",
|
|
30
|
+
"require": "./dist/runtime/server/index.js"
|
|
31
|
+
},
|
|
32
|
+
"./client": {
|
|
33
|
+
"types": "./dist/runtime/client/index.d.ts",
|
|
34
|
+
"import": "./dist/runtime/client/index.js",
|
|
35
|
+
"require": "./dist/runtime/client/index.js"
|
|
36
|
+
},
|
|
37
|
+
"./shared": {
|
|
38
|
+
"types": "./dist/kernel/shared/index.d.ts",
|
|
39
|
+
"import": "./dist/kernel/shared/index.js",
|
|
40
|
+
"require": "./dist/kernel/shared/index.js"
|
|
41
|
+
},
|
|
42
|
+
"./utils": {
|
|
43
|
+
"types": "./dist/kernel/utils/index.d.ts",
|
|
44
|
+
"import": "./dist/kernel/utils/index.js",
|
|
45
|
+
"require": "./dist/kernel/utils/index.js"
|
|
46
|
+
},
|
|
47
|
+
"./package.json": "./package.json"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "tsc -p tsconfig.build.json",
|
|
51
|
+
"watch": "tsc -p tsconfig.build.json --watch",
|
|
52
|
+
"check": "biome check .",
|
|
53
|
+
"check:fix": "biome check --write .",
|
|
54
|
+
"check:fix:unsafe": "biome check --write --unsafe",
|
|
55
|
+
"format": "biome format --write .",
|
|
56
|
+
"lint": "biome lint .",
|
|
57
|
+
"lint:fix": "biome lint --write .",
|
|
58
|
+
"typecheck": "tsc --noEmit",
|
|
59
|
+
"test": "npx vitest run --project unit --project integration --project e2e",
|
|
60
|
+
"test:watch": "npx vitest --project unit --project integration --project e2e",
|
|
61
|
+
"test:unit": "npx vitest run --project unit",
|
|
62
|
+
"test:integration": "npx vitest run --project integration",
|
|
63
|
+
"test:coverage": "npx vitest run --coverage",
|
|
64
|
+
"bench": "npx tsx benchmark/index.ts",
|
|
65
|
+
"bench:core": "npx tsx benchmark/index.ts --core",
|
|
66
|
+
"bench:load": "npx vitest run --project benchmark",
|
|
67
|
+
"bench:all": "npx tsx benchmark/index.ts --all"
|
|
68
|
+
},
|
|
69
|
+
"keywords": [
|
|
70
|
+
"framework",
|
|
71
|
+
"opencore",
|
|
72
|
+
"fivem",
|
|
73
|
+
"typescript",
|
|
74
|
+
"roleplay"
|
|
75
|
+
],
|
|
76
|
+
"author": "OpenCore Team",
|
|
77
|
+
"license": "MPL-2.0",
|
|
78
|
+
"packageManager": "pnpm@10.13.1",
|
|
79
|
+
"dependencies": {
|
|
80
|
+
"reflect-metadata": "^0.2.2",
|
|
81
|
+
"tsyringe": "^4.10.0",
|
|
82
|
+
"uuid": "^13.0.0",
|
|
83
|
+
"zod": "^4.1.13"
|
|
84
|
+
},
|
|
85
|
+
"devDependencies": {
|
|
86
|
+
"@biomejs/biome": "^2.3.10",
|
|
87
|
+
"@citizenfx/client": "2.0.22443-1",
|
|
88
|
+
"@citizenfx/server": "2.0.22443-1",
|
|
89
|
+
"@types/node": "^24.10.1",
|
|
90
|
+
"@vitest/coverage-v8": "^4.0.15",
|
|
91
|
+
"eslint-config-prettier": "^10.1.8",
|
|
92
|
+
"eslint-plugin-import": "^2.32.0",
|
|
93
|
+
"tinybench": "^2.7.0",
|
|
94
|
+
"tsx": "^4.19.2",
|
|
95
|
+
"typescript": "^5.9.3",
|
|
96
|
+
"vitest": "^4.0.15"
|
|
97
|
+
}
|
|
98
|
+
}
|