@mtndev/cli 0.0.0-dev-20260618142325
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/CHANGELOG.md +7 -0
- package/cjs/__chunks/4SFWHCB3.cjs +133 -0
- package/cjs/__chunks/B2KFW7T7.cjs +1 -0
- package/cjs/__chunks/EMMC33QA.cjs +401 -0
- package/cjs/__chunks/FFFTVBUR.cjs +22 -0
- package/cjs/__chunks/HFSXD6YE.cjs +100 -0
- package/cjs/__chunks/INFOPAHN.cjs +117 -0
- package/cjs/__chunks/J36P6UNE.cjs +75 -0
- package/cjs/__chunks/NIMXXHJQ.cjs +92 -0
- package/cjs/__chunks/QBNNK2WX.cjs +52 -0
- package/cjs/__chunks/WNJ3ZYLI.cjs +1 -0
- package/cjs/commands/doppler/handler.cjs +9 -0
- package/cjs/commands/doppler/handler.d.ts +5 -0
- package/cjs/commands/doppler/index.cjs +41 -0
- package/cjs/commands/doppler/index.d.ts +3 -0
- package/cjs/commands/doppler/schema.cjs +8 -0
- package/cjs/commands/doppler/schema.d.ts +50 -0
- package/cjs/commands/doppler/utils/exec.cjs +12 -0
- package/cjs/commands/doppler/utils/exec.d.ts +52 -0
- package/cjs/commands/doppler/utils.cjs +30 -0
- package/cjs/commands/doppler/utils.d.ts +69 -0
- package/cjs/commands/icons/handler.cjs +8 -0
- package/cjs/commands/icons/handler.d.ts +5 -0
- package/cjs/commands/icons/index.cjs +31 -0
- package/cjs/commands/icons/index.d.ts +3 -0
- package/cjs/commands/icons/schema.cjs +16 -0
- package/cjs/commands/icons/schema.d.ts +86 -0
- package/cjs/commands/icons/utils.cjs +13 -0
- package/cjs/commands/icons/utils.d.ts +52 -0
- package/cjs/commands/index.cjs +84 -0
- package/cjs/commands/index.d.ts +2 -0
- package/cjs/commands/schema.cjs +8 -0
- package/cjs/commands/schema.d.ts +26 -0
- package/cjs/index.cjs +5 -0
- package/cjs/index.d.ts +2 -0
- package/esm/__chunks/46HGXFME.js +0 -0
- package/esm/__chunks/6G4PXXKF.js +75 -0
- package/esm/__chunks/EC6MPHID.js +22 -0
- package/esm/__chunks/FL7AILGH.js +133 -0
- package/esm/__chunks/G6WUCFLD.js +100 -0
- package/esm/__chunks/HJSXC6HP.js +117 -0
- package/esm/__chunks/LHVSSZI7.js +52 -0
- package/esm/__chunks/O262GK4B.js +401 -0
- package/esm/__chunks/SJXQJ7RS.js +92 -0
- package/esm/__chunks/SNCKIAOR.js +0 -0
- package/esm/commands/doppler/handler.d.ts +5 -0
- package/esm/commands/doppler/handler.js +9 -0
- package/esm/commands/doppler/index.d.ts +3 -0
- package/esm/commands/doppler/index.js +41 -0
- package/esm/commands/doppler/schema.d.ts +50 -0
- package/esm/commands/doppler/schema.js +8 -0
- package/esm/commands/doppler/utils/exec.d.ts +52 -0
- package/esm/commands/doppler/utils/exec.js +12 -0
- package/esm/commands/doppler/utils.d.ts +69 -0
- package/esm/commands/doppler/utils.js +30 -0
- package/esm/commands/icons/handler.d.ts +5 -0
- package/esm/commands/icons/handler.js +8 -0
- package/esm/commands/icons/index.d.ts +3 -0
- package/esm/commands/icons/index.js +31 -0
- package/esm/commands/icons/schema.d.ts +86 -0
- package/esm/commands/icons/schema.js +16 -0
- package/esm/commands/icons/utils.d.ts +52 -0
- package/esm/commands/icons/utils.js +13 -0
- package/esm/commands/index.d.ts +2 -0
- package/esm/commands/index.js +84 -0
- package/esm/commands/schema.d.ts +26 -0
- package/esm/commands/schema.js +8 -0
- package/esm/index.d.ts +2 -0
- package/esm/index.js +5 -0
- package/package.json +62 -0
- package/utils/input/package.json +8 -0
- package/utils/package/package.json +8 -0
- package/utils/validation/package.json +8 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"private": false,
|
|
3
|
+
"name": "@mtndev/cli",
|
|
4
|
+
"description": "A CLI tool for mtndev projects",
|
|
5
|
+
"version": "0.0.0-dev-20260618142325",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"author": {
|
|
11
|
+
"name": "Marcos Fernandes",
|
|
12
|
+
"url": "https://github.com/rnarcos"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/High-Country-Dev/core.git",
|
|
17
|
+
"directory": "packages/cli"
|
|
18
|
+
},
|
|
19
|
+
"type": "module",
|
|
20
|
+
"bin": {
|
|
21
|
+
"mtn": "./cjs/commands/index.cjs"
|
|
22
|
+
},
|
|
23
|
+
"main": "./cjs/index.cjs",
|
|
24
|
+
"module": "./esm/index.js",
|
|
25
|
+
"types": "./esm/index.d.ts",
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"chalk": "^4.1.2",
|
|
28
|
+
"chokidar": "^3.5.3",
|
|
29
|
+
"commander": "^12.0.0",
|
|
30
|
+
"cross-spawn": "^7.0.3",
|
|
31
|
+
"fs-extra": "^11.2.0",
|
|
32
|
+
"glob": "^11.1.0",
|
|
33
|
+
"rimraf": "^5.0.5",
|
|
34
|
+
"zod": "^3.22.4"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@mtndev/typescript-config": "^1.0.0",
|
|
38
|
+
"@types/cross-spawn": "^6.0.6",
|
|
39
|
+
"@types/fs-extra": "^11.0.4",
|
|
40
|
+
"@types/node": "^20.11.0",
|
|
41
|
+
"typescript": "^5.9.3"
|
|
42
|
+
},
|
|
43
|
+
"exports": {
|
|
44
|
+
".": {
|
|
45
|
+
"types": "./esm/index.d.ts",
|
|
46
|
+
"import": "./esm/index.js",
|
|
47
|
+
"require": "./cjs/index.cjs"
|
|
48
|
+
},
|
|
49
|
+
"./package.json": "./package.json"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "libsync build",
|
|
53
|
+
"clean": "libsync clean && git clean -xdf node_modules .cache .turbo",
|
|
54
|
+
"dev": "concurrently --names \"dev-package-json,build\" --prefix-colors \"green,gray\" \"npx libsync package-json --mode development --watch\" \"npx libsync build --watch\"",
|
|
55
|
+
"format": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
|
|
56
|
+
"format:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
|
|
57
|
+
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\"",
|
|
58
|
+
"lint:fix": "eslint \"src/**/*.{ts,tsx,js,jsx}\" --fix",
|
|
59
|
+
"publish:staging": "libsync publish:staging --force",
|
|
60
|
+
"typecheck": "libsync build --types-only"
|
|
61
|
+
}
|
|
62
|
+
}
|