@cododel/alto 0.1.6 → 0.1.8
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 +6 -1101
- package/package.json +23 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cododel/alto",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "A powerful CLI tool for directus",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -33,29 +33,40 @@
|
|
|
33
33
|
"README.md",
|
|
34
34
|
"LICENSE"
|
|
35
35
|
],
|
|
36
|
-
"scripts": {
|
|
37
|
-
"alto": "bun ./src/index.ts",
|
|
38
|
-
"build": "bun build src/index.ts --outdir dist --target node --minify --external consola --external enquirer --external execa --external yargs && cp -r src/commands/types/cli/default dist/default",
|
|
39
|
-
"prepublishOnly": "bun run build",
|
|
40
|
-
"test:install": "./scripts/test-install.sh",
|
|
41
|
-
"test:uninstall": "./scripts/test-uninstall.sh",
|
|
42
|
-
"test:full-cycle": "./scripts/test-full-cycle.sh"
|
|
43
|
-
},
|
|
44
36
|
"devDependencies": {
|
|
45
37
|
"@types/bun": "latest",
|
|
46
38
|
"@types/execa": "^2.0.2",
|
|
39
|
+
"@types/nunjucks": "^3.2.6",
|
|
40
|
+
"@types/pluralize": "^0.0.33",
|
|
47
41
|
"@types/yargs": "^17.0.33"
|
|
48
42
|
},
|
|
49
43
|
"peerDependencies": {
|
|
50
44
|
"typescript": "^5"
|
|
51
45
|
},
|
|
52
46
|
"dependencies": {
|
|
47
|
+
"@directus/sdk": "^21.1.0",
|
|
48
|
+
"chokidar": "^5.0.0",
|
|
53
49
|
"consola": "^3.4.2",
|
|
54
50
|
"enquirer": "^2.4.1",
|
|
51
|
+
"eventemitter2": "^6.4.9",
|
|
55
52
|
"execa": "^9.6.0",
|
|
56
|
-
"
|
|
53
|
+
"fast-glob": "^3.3.3",
|
|
54
|
+
"jiti": "^2.6.1",
|
|
55
|
+
"nunjucks": "^3.2.4",
|
|
56
|
+
"pluralize": "^8.0.0",
|
|
57
|
+
"prettier": "^3.8.1",
|
|
58
|
+
"ts-pattern": "^5.9.0",
|
|
59
|
+
"yargs": "^18.0.0",
|
|
60
|
+
"zod": "^4.3.6"
|
|
57
61
|
},
|
|
58
62
|
"workspaces": [
|
|
59
63
|
"src/commands/*"
|
|
60
|
-
]
|
|
61
|
-
|
|
64
|
+
],
|
|
65
|
+
"scripts": {
|
|
66
|
+
"alto": "bun ./src/index.ts",
|
|
67
|
+
"build": "bun build src/index.ts --outdir dist --target node --minify --external consola --external enquirer --external execa --external yargs --external ts-pattern --external pluralize --external jiti --external nunjucks --external prettier --external fast-glob --external eventemitter2 --external chokidar --external @directus/sdk --external zod && cp -r src/commands/types/cli/default dist/default",
|
|
68
|
+
"test:install": "./scripts/test-install.sh",
|
|
69
|
+
"test:uninstall": "./scripts/test-uninstall.sh",
|
|
70
|
+
"test:full-cycle": "./scripts/test-full-cycle.sh"
|
|
71
|
+
}
|
|
72
|
+
}
|