@v5x/cli 0.0.21 → 0.0.23
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 +20 -0
- package/dist/index.js +6586 -5216
- package/dist/index.js.map +56 -0
- package/package.json +36 -8
package/package.json
CHANGED
|
@@ -1,34 +1,62 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@v5x/cli",
|
|
3
3
|
"description": "modern v5 tools",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.23",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"sideEffects": true,
|
|
8
|
+
"engines": {
|
|
9
|
+
"bun": ">=1.3.14"
|
|
10
|
+
},
|
|
11
|
+
"os": [
|
|
12
|
+
"darwin",
|
|
13
|
+
"linux"
|
|
14
|
+
],
|
|
7
15
|
"bin": {
|
|
8
16
|
"v5x": "./dist/index.js"
|
|
9
17
|
},
|
|
10
18
|
"files": [
|
|
11
19
|
"dist",
|
|
20
|
+
"LICENSE",
|
|
12
21
|
"README.md"
|
|
13
22
|
],
|
|
14
23
|
"scripts": {
|
|
15
|
-
"build": "bun build ./src/index.ts --target bun --
|
|
24
|
+
"build": "bun run clean && bun build ./src/index.ts --target bun --sourcemap=linked --outdir ./dist --entry-naming=index.js",
|
|
25
|
+
"clean": "rm -rf dist",
|
|
16
26
|
"typecheck": "tsc --noEmit",
|
|
27
|
+
"lint": "oxlint src --type-aware",
|
|
17
28
|
"test": "bun test",
|
|
18
|
-
"prepack": "bun run build"
|
|
29
|
+
"prepack": "bun run --cwd ../serial build && bun run build"
|
|
19
30
|
},
|
|
20
31
|
"devDependencies": {
|
|
21
|
-
"@v5x/serial": "0.5.4",
|
|
22
32
|
"@types/bun": "latest"
|
|
23
33
|
},
|
|
24
|
-
"peerDependencies": {
|
|
25
|
-
"typescript": "^5"
|
|
26
|
-
},
|
|
27
34
|
"dependencies": {
|
|
35
|
+
"@v5x/serial": "0.5.6",
|
|
28
36
|
"bun-serialport": "^0.1.1",
|
|
29
37
|
"chalk": "^5.6.2",
|
|
30
38
|
"cmd-table": "^1.6.0",
|
|
31
39
|
"fflate": "^0.8.3",
|
|
40
|
+
"neverthrow": "^8.2.0",
|
|
32
41
|
"sade": "^1.8.1"
|
|
33
|
-
}
|
|
42
|
+
},
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "https://github.com/v5x-dev/v5x.git",
|
|
46
|
+
"directory": "packages/cli"
|
|
47
|
+
},
|
|
48
|
+
"keywords": [
|
|
49
|
+
"v5",
|
|
50
|
+
"vex",
|
|
51
|
+
"vex-robotics",
|
|
52
|
+
"vex-v5",
|
|
53
|
+
"cli",
|
|
54
|
+
"robotics"
|
|
55
|
+
],
|
|
56
|
+
"author": "qainguin <slimaster14@gmail.com>",
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"bugs": {
|
|
59
|
+
"url": "https://github.com/v5x-dev/v5x/issues"
|
|
60
|
+
},
|
|
61
|
+
"homepage": "https://docs.v5x.dev/cli/overview"
|
|
34
62
|
}
|