@v5x/cli 0.0.17 → 0.0.18

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,44 +1,41 @@
1
1
  {
2
2
  "name": "@v5x/cli",
3
- "version": "0.0.17",
4
- "description": "Command line interface for v5x.",
5
- "license": "MIT",
6
- "type": "module",
3
+ "version": "0.0.18",
4
+ "description": "modern v5 development",
5
+ "author": "beanarchystudios",
7
6
  "bin": {
8
- "v5x": "dist/index.js"
9
- },
10
- "files": [
11
- "dist",
12
- "README.md"
13
- ],
14
- "repository": {
15
- "type": "git",
16
- "url": "git+https://github.com/beanarchystudios/v5x.git",
17
- "directory": "packages/cli"
18
- },
19
- "bugs": {
20
- "url": "https://github.com/beanarchystudios/v5x/issues"
21
- },
22
- "homepage": "https://github.com/beanarchystudios/v5x#readme",
23
- "publishConfig": {
24
- "access": "public"
7
+ "cli": "./dist/index.js"
25
8
  },
9
+ "files": ["dist", "README.md"],
10
+ "type": "module",
26
11
  "scripts": {
27
- "build": "bun build ./src/index.ts --target bun --external unzipit --outfile ./dist/index.js && chmod +x ./dist/index.js",
28
- "dev": "bun --silent ./src/index.ts",
29
- "lint": "bunx tsc --noEmit",
30
- "prepublishOnly": "bun run typecheck && bun run build",
31
- "typecheck": "bunx tsc --noEmit"
12
+ "postinstall": "bunli generate",
13
+ "dev": "bun run src/index.ts",
14
+ "build": "bunli build --outfile dist/index.js",
15
+ "prepublishOnly": "bun run build",
16
+ "test": "bun test",
17
+ "typecheck": "tsc --noEmit"
32
18
  },
33
- "engines": {
34
- "bun": ">=1.3.14"
19
+ "dependencies": {
20
+ "@bunli/core": "latest",
21
+ "@bunli/runtime": "^0.3.2",
22
+ "@v5x/serial": "0.5.0",
23
+ "bun-serialport": "^0.1.1",
24
+ "cli-table": "^0.3.11",
25
+ "pngjs": "^7.0.0",
26
+ "zod": "^4.4.3"
35
27
  },
36
28
  "devDependencies": {
37
- "@types/bun": "^1.3.1"
29
+ "@bunli/test": "latest",
30
+ "@tsconfig/bun": "1.0.10",
31
+ "@types/bun": "latest",
32
+ "@types/cli-table": "^0.3.4",
33
+ "@types/pngjs": "^6.0.5",
34
+ "bunli": "latest",
35
+ "typescript": "^5.0.0"
38
36
  },
39
- "dependencies": {
40
- "bun-serialport": "^0.1.1",
41
- "commander": "^14.0.3",
42
- "unzipit": "^1.4.0"
37
+ "bunli": {
38
+ "entry": "./src/index.ts",
39
+ "outDir": "./dist"
43
40
  }
44
41
  }
package/README.md DELETED
@@ -1,15 +0,0 @@
1
- # @v5x/cli
2
-
3
- Command line interface for v5x.
4
-
5
- ## Install
6
-
7
- ```sh
8
- bun add -g @v5x/cli
9
- ```
10
-
11
- ## Usage
12
-
13
- ```sh
14
- v5x
15
- ```