@amadeus-dlc/setup 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/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@amadeus-dlc/setup",
3
+ "version": "0.1.0",
4
+ "description": "Installer CLI for Amadeus-DLC — fetches a tagged Amadeus distribution from GitHub and installs it into your project.",
5
+ "type": "module",
6
+ "bin": {
7
+ "amadeus-setup": "dist/cli.js"
8
+ },
9
+ "engines": {
10
+ "node": ">=18.3"
11
+ },
12
+ "license": "(MIT OR Apache-2.0)",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/amadeus-dlc/amadeus",
16
+ "directory": "packages/setup"
17
+ },
18
+ "files": [
19
+ "dist/cli.js",
20
+ "LICENSE-MIT",
21
+ "LICENSE-APACHE"
22
+ ],
23
+ "scripts": {
24
+ "build": "bun build src/cli.ts --target=node --format=esm --outfile=dist/cli.js"
25
+ }
26
+ }