-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.57 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.57 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
{
"name": "@omp-node/cli",
"description": "A CLI tool for open.mp to quickly create and initialize new resources with predefined templates and configurations.",
"version": "1.5.2",
"repository": "https://github.com/omp-node/cli",
"readme": "https://github.com/omp-node/cli/blob/master/README.md",
"bugs": "https://github.com/omp-node/cli/issues",
"type": "module",
"bin": {
"omp-node-cli": "./dist/index.js"
},
"keywords": [
"open.mp",
"omp-node",
"samp",
"command line",
"cli",
"resource"
],
"scripts": {
"dev": "rollup -c ./scripts/rollup.config.mjs -w",
"build": "rollup -c ./scripts/rollup.config.mjs",
"start": "node dist/index.js"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"exports": {
"import": "./dist/index.js"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@swc/helpers": "^0.5.15",
"@types/node": "^22.10.1",
"builtin-modules": "^4.0.0",
"colorette": "^2.0.20",
"fs-jetpack": "^5.1.0",
"inquirer": "^12.1.0",
"rollup": "^4.28.0",
"rollup-plugin-swc3": "^0.12.1",
"rollup-plugin-tsconfig-paths": "^1.5.2"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120
},
"license": "ISC",
"dependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"yargs": "^17.7.2"
},
"private": false
}