-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.19 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.19 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
{
"name": "@open-core/cli",
"version": "1.3.1",
"description": "Official CLI tool for OpenCore Framework",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.js",
"default": "./index.js"
},
"./vite": {
"types": "./vite.d.ts",
"import": "./vite.mjs",
"require": "./vite.js"
}
},
"bin": {
"opencore": "index.js"
},
"scripts": {
"postinstall": "node install.js"
},
"dependencies": {
"esbuild": "^0.27.2",
"@swc/core": "^1.15.8",
"tsconfig-paths": "^4.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/newcore-network/opencore-cli.git"
},
"homepage": "https://opencorejs.dev",
"keywords": [
"opencore",
"fivem",
"cli",
"framework"
],
"author": "Newcore Network",
"license": "MPL-2.0",
"engines": {
"node": ">=16.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"files": [
"bin/opencore",
"index.js",
"index.d.ts",
"vite.js",
"vite.mjs",
"vite.d.ts",
"binary.js",
"install.js",
"config-helper.js"
],
"publishConfig": {
"access": "public"
}
}