@nanoforge-dev/cli 1.0.0
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/LICENSE +21 -0
- package/README.md +111 -0
- package/dist/command.loader.d.ts +8 -0
- package/dist/command.loader.js +1435 -0
- package/dist/command.loader.js.map +1 -0
- package/dist/nf.js +1597 -0
- package/package.json +97 -0
package/package.json
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
+
"name": "@nanoforge-dev/cli",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "NanoForge CLI",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"nanoforge",
|
|
8
|
+
"game",
|
|
9
|
+
"cli"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/NanoForge-dev/CLI#readme",
|
|
12
|
+
"bugs": "https://github.com/NanoForge-dev/cli/issues",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"contributors": [
|
|
15
|
+
"Bill <timothe.jacquot@epitech.eu>",
|
|
16
|
+
"Exelo <exelo.corp@gmail.com>",
|
|
17
|
+
"Fexkoser <martin.fillon@epitech.eu>",
|
|
18
|
+
"Tchips <leo.outmizguine@epitech.eu>"
|
|
19
|
+
],
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"bin": {
|
|
24
|
+
"nf": "dist/nf.js"
|
|
25
|
+
},
|
|
26
|
+
"type": "module",
|
|
27
|
+
"directories": {
|
|
28
|
+
"lib": "src"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/NanoForge-dev/CLI.git"
|
|
33
|
+
},
|
|
34
|
+
"funding": "",
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@angular-devkit/schematics": "^21.0.1",
|
|
37
|
+
"@angular-devkit/schematics-cli": "^21.0.1",
|
|
38
|
+
"@inquirer/prompts": "^7.9.0",
|
|
39
|
+
"@nanoforge-dev/loader-client": "^1.0.1",
|
|
40
|
+
"@nanoforge-dev/loader-server": "^1.0.1",
|
|
41
|
+
"@nanoforge-dev/schematics": "^1.0.2",
|
|
42
|
+
"ansis": "^4.2.0",
|
|
43
|
+
"chokidar": "^4.0.3",
|
|
44
|
+
"class-transformer": "^0.5.1",
|
|
45
|
+
"class-validator": "^0.14.2",
|
|
46
|
+
"cli-table3": "^0.6.5",
|
|
47
|
+
"commander": "^14.0.2",
|
|
48
|
+
"node-emoji": "^2.2.0",
|
|
49
|
+
"ora": "^9.0.0",
|
|
50
|
+
"reflect-metadata": "^0.2.2"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@commitlint/cli": "^20.1.0",
|
|
54
|
+
"@commitlint/config-conventional": "^20.0.0",
|
|
55
|
+
"@eslint/js": "^9.39.0",
|
|
56
|
+
"@favware/cliff-jumper": "^6.0.0",
|
|
57
|
+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
58
|
+
"@types/inquirer": "^9.0.9",
|
|
59
|
+
"@types/node": "^24.10.1",
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^8.46.2",
|
|
61
|
+
"@typescript-eslint/parser": "^8.46.2",
|
|
62
|
+
"eslint": "^9.39.0",
|
|
63
|
+
"eslint-config-prettier": "^10.1.8",
|
|
64
|
+
"eslint-formatter-pretty": "^7.0.0",
|
|
65
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
66
|
+
"globals": "^16.5.0",
|
|
67
|
+
"husky": "^9.1.7",
|
|
68
|
+
"lint-staged": "^16.2.6",
|
|
69
|
+
"prettier": "^3.6.2",
|
|
70
|
+
"taze": "^19.9.0",
|
|
71
|
+
"tsup": "^8.5.1",
|
|
72
|
+
"typescript": "^5.9.3",
|
|
73
|
+
"typescript-eslint": "^8.46.2"
|
|
74
|
+
},
|
|
75
|
+
"engines": {
|
|
76
|
+
"node": "24.11.1"
|
|
77
|
+
},
|
|
78
|
+
"publishConfig": {
|
|
79
|
+
"access": "public"
|
|
80
|
+
},
|
|
81
|
+
"lint-staged": {
|
|
82
|
+
"**/*.ts": [
|
|
83
|
+
"prettier --write"
|
|
84
|
+
],
|
|
85
|
+
"src/**/*.ts": [
|
|
86
|
+
"eslint --fix"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
"scripts": {
|
|
90
|
+
"build": "tsc --noEmit && tsup",
|
|
91
|
+
"start": "node dist/nf.js",
|
|
92
|
+
"lint": "prettier --check . && eslint --format=pretty src",
|
|
93
|
+
"format": "prettier --write . && eslint --fix --format=pretty src",
|
|
94
|
+
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r . --include-path '.'",
|
|
95
|
+
"release": "cliff-jumper"
|
|
96
|
+
}
|
|
97
|
+
}
|