-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.26 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
{
"name": "@omp-node/core",
"version": "0.4.3",
"description": "open.mp core nodejs package. contains constants, type definitions, and initializers",
"scripts": {
"build": "rollup -c rollup.config.mjs --environment TARGET:@omp-node/core"
},
"keywords": [
"omp",
"open.mp",
"samp",
"sa:mp",
"sa-mp",
"node",
"nodejs",
"javascript",
"typescript"
],
"exports": {
".": {
"require": "./dist/bundle.js",
"import": "./dist/bundle.mjs",
"types": "./dist/bundle.d.ts"
}
},
"main": "dist/bundle.js",
"module": "dist/bundle.mjs",
"types": "dist/bundle.d.ts",
"files": [
"dist",
"README.md"
],
"type": "commonjs",
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@types/node": "^18.19.39",
"rollup": "^4.17.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.2",
"rollup-plugin-typescript-paths": "^1.5.0",
"typescript": "^5.4.5"
},
"repository": "https://github.com/omp-node/core",
"homepage": "https://github.com/omp-node/core",
"author": "Amyr (iAmir) Ahmady",
"license": "MIT",
"bugs": {
"url": "https://github.com/omp-node/core/issues"
}
}