fly-to-moon 0.1.12
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/LICENSE +21 -0
- package/README.md +237 -0
- package/dist/cli.mjs +3374 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "fly-to-moon",
|
|
3
|
+
"version": "0.1.12",
|
|
4
|
+
"description": "Humans fly to space. AI does the work. — Fly to the moon, fly to Mars",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"fttm": "dist/cli.mjs"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsdown",
|
|
11
|
+
"dev": "tsdown --watch",
|
|
12
|
+
"start": "node dist/cli.mjs",
|
|
13
|
+
"lint": "eslint src",
|
|
14
|
+
"format": "prettier --write src",
|
|
15
|
+
"format:check": "prettier --check src",
|
|
16
|
+
"test": "npm run build && vitest run",
|
|
17
|
+
"test:e2e": "npm run build && vitest run test/e2e.test.ts",
|
|
18
|
+
"test:coverage": "vitest run --coverage --exclude test/e2e.test.ts"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"commander": "^14.0.3",
|
|
22
|
+
"js-yaml": "^4.1.1"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@eslint/js": "^9.0.0",
|
|
26
|
+
"@types/js-yaml": "^4.0.9",
|
|
27
|
+
"@types/node": "^22.0.0",
|
|
28
|
+
"eslint": "^9.0.0",
|
|
29
|
+
"eslint-config-prettier": "^10.0.0",
|
|
30
|
+
"prettier": "^3.0.0",
|
|
31
|
+
"tsdown": "^0.21.7",
|
|
32
|
+
"typescript": "^5.8.0",
|
|
33
|
+
"typescript-eslint": "^8.0.0",
|
|
34
|
+
"vitest": "^4.1.2"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"LICENSE",
|
|
39
|
+
"README.md"
|
|
40
|
+
],
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "https://github.com/evoerax/fttm"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=20"
|
|
50
|
+
}
|
|
51
|
+
}
|