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/package.json CHANGED
@@ -1,49 +1,52 @@
1
1
  {
2
- "name": "flightdeck",
3
- "version": "0.0.0",
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": ["dist", "src"],
14
- "main": "dist/lib.js",
15
- "types": "dist/lib.d.ts",
16
- "bin": {
17
- "flightdeck": "./dist/bin.js"
18
- },
19
- "dependencies": {
20
- "atom.io": "workspace:*",
21
- "comline": "workspace:*",
22
- "zod": "3.23.8"
23
- },
24
- "scripts": {
25
- "build": "rimraf dist && concurrently \"bun:build:*\" && bun run schema",
26
- "build:lib": "bun build --outdir dist --target node --external flightdeck -- src/lib.ts ",
27
- "build:bin": "bun build --outdir dist --target node --external flightdeck -- src/bin.ts",
28
- "build:dts": "tsup",
29
- "schema": "bun ./src/bin.ts --outdir=dist -- schema",
30
- "lint:biome": "biome check -- .",
31
- "lint:eslint": "eslint --flag unstable_ts_config -- .",
32
- "lint:types": "tsc --noEmit",
33
- "lint:types:watch": "tsc --watch --noEmit",
34
- "lint": "bun run lint:biome && bun run lint:eslint && bun run lint:types",
35
- "test": "vitest",
36
- "test:once": "vitest run",
37
- "test:coverage": "echo no test coverage yet"
38
- },
39
- "devDependencies": {
40
- "@types/bun": "1.1.8",
41
- "@types/node": "20.16.3",
42
- "@types/tmp": "0.2.6",
43
- "concurrently": "8.2.2",
44
- "tmp": "0.2.3",
45
- "tsup": "8.2.4",
46
- "rimraf": "6.0.1",
47
- "vitest": "2.0.5"
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