najm-cli 0.1.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/dist/index.js +3624 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "najm-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "CLI tool for najm framework - scaffolding, code generation, and project setup",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"najm": "./dist/index.js",
|
|
10
|
+
"najm-cli": "./dist/index.js"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"clean": "rimraf dist",
|
|
24
|
+
"build:lib": "bun build src/index.ts --outdir dist --format esm --target node",
|
|
25
|
+
"build:types": "tsc --project tsconfig.json",
|
|
26
|
+
"build": "bun run clean && bun run build:types && bun run build:lib",
|
|
27
|
+
"dev": "bun --watch src/index.ts",
|
|
28
|
+
"test": "bun test",
|
|
29
|
+
"prepublishOnly": "bun run build"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@clack/prompts": "^0.10.0",
|
|
33
|
+
"dotenv-pro": "^0.2.0",
|
|
34
|
+
"forji": "^1.0.5",
|
|
35
|
+
"picocolors": "^1.1.1",
|
|
36
|
+
"pm-ninja": "^1.1.3",
|
|
37
|
+
"strip-json-comments": "^5.0.3"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@types/bun": "latest",
|
|
41
|
+
"rimraf": "^6.0.1",
|
|
42
|
+
"typescript": "^5.7.3"
|
|
43
|
+
},
|
|
44
|
+
"keywords": [
|
|
45
|
+
"cli",
|
|
46
|
+
"scaffolding",
|
|
47
|
+
"code-generation",
|
|
48
|
+
"najm",
|
|
49
|
+
"framework",
|
|
50
|
+
"typescript"
|
|
51
|
+
],
|
|
52
|
+
"author": "Hicham Jebara",
|
|
53
|
+
"license": "MIT"
|
|
54
|
+
}
|