@cododel/alto 0.0.1

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/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@cododel/alto",
3
+ "version": "0.0.1",
4
+ "description": "A powerful CLI tool for directus",
5
+ "keywords": [
6
+ "cli",
7
+ "typescript",
8
+ "directus",
9
+ "code-generation"
10
+ ],
11
+ "author": "Alexander Smith <websmithcode@gmail.com>",
12
+ "license": "MIT",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/cododel/alto.git"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/cododel/alto/issues"
19
+ },
20
+ "homepage": "https://github.com/cododel/alto#readme",
21
+ "main": "dist/index.js",
22
+ "module": "dist/index.js",
23
+ "type": "module",
24
+ "bin": {
25
+ "alto": "./dist/index.js",
26
+ "alto-binary": "./dist/alto"
27
+ },
28
+ "exports": {
29
+ ".": "./dist/index.js",
30
+ "./cli": "./dist/cli.js"
31
+ },
32
+ "files": [
33
+ "dist/**/*",
34
+ "README.md",
35
+ "LICENSE"
36
+ ],
37
+ "scripts": {
38
+ "alto": "bun ./src/index.ts",
39
+ "build": "bun build src/index.ts --outdir dist --target node --minify --external consola --external enquirer --external execa --external yargs",
40
+ "build:binary": "bun build src/index.ts --compile --outfile dist/alto",
41
+ "build:binaries": "./scripts/build-binaries.sh",
42
+ "prepublishOnly": "bun run build && bun run build:binary",
43
+ "test:install": "./scripts/test-install.sh"
44
+ },
45
+ "workspaces": [
46
+ "src/commands/*"
47
+ ],
48
+ "devDependencies": {
49
+ "@types/bun": "latest",
50
+ "@types/execa": "^2.0.2",
51
+ "@types/yargs": "^17.0.33"
52
+ },
53
+ "peerDependencies": {
54
+ "typescript": "^5"
55
+ },
56
+ "dependencies": {
57
+ "consola": "^3.4.2",
58
+ "enquirer": "^2.4.1",
59
+ "execa": "^9.6.0",
60
+ "yargs": "^18.0.0"
61
+ }
62
+ }