flightdeck 0.0.0 → 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/README.md +14 -0
- package/dist/bin.js +4 -5187
- package/dist/lib.js +7 -3680
- package/package.json +51 -48
- package/src/bin.ts +0 -0
package/package.json
CHANGED
|
@@ -1,49 +1,52 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
2
|
+
"name": "flightdeck",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Jeremy Banka",
|
|
7
|
+
"email": "hello@jeremybanka.com"
|
|
8
|
+
},
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"type": "module",
|
|
13
|
+
"files": [
|
|
14
|
+
"dist",
|
|
15
|
+
"src"
|
|
16
|
+
],
|
|
17
|
+
"main": "dist/lib.js",
|
|
18
|
+
"types": "dist/lib.d.ts",
|
|
19
|
+
"bin": {
|
|
20
|
+
"flightdeck": "./dist/bin.js"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"zod": "3.23.8",
|
|
24
|
+
"atom.io": "0.29.0",
|
|
25
|
+
"comline": "0.1.0"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/bun": "1.1.8",
|
|
29
|
+
"@types/node": "20.16.5",
|
|
30
|
+
"@types/tmp": "0.2.6",
|
|
31
|
+
"concurrently": "8.2.2",
|
|
32
|
+
"tmp": "0.2.3",
|
|
33
|
+
"tsup": "8.2.4",
|
|
34
|
+
"rimraf": "6.0.1",
|
|
35
|
+
"vitest": "2.0.5"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "rimraf dist && concurrently \"bun:build:*\" && bun run schema",
|
|
39
|
+
"build:lib": "bun build --outdir dist --target node --external flightdeck --external atom.io --external comline --external zod -- src/lib.ts ",
|
|
40
|
+
"build:bin": "bun build --outdir dist --target node --external flightdeck --external atom.io --external comline --external zod -- src/bin.ts",
|
|
41
|
+
"build:dts": "tsup",
|
|
42
|
+
"schema": "bun ./src/bin.ts --outdir=dist -- schema",
|
|
43
|
+
"lint:biome": "biome check -- .",
|
|
44
|
+
"lint:eslint": "eslint --flag unstable_ts_config -- .",
|
|
45
|
+
"lint:types": "tsc --noEmit",
|
|
46
|
+
"lint:types:watch": "tsc --watch --noEmit",
|
|
47
|
+
"lint": "bun run lint:biome && bun run lint:eslint && bun run lint:types",
|
|
48
|
+
"test": "vitest",
|
|
49
|
+
"test:once": "vitest run",
|
|
50
|
+
"test:coverage": "echo no test coverage yet"
|
|
51
|
+
}
|
|
52
|
+
}
|
package/src/bin.ts
CHANGED
|
File without changes
|