@v5x/cli 0.0.17 → 0.0.19
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/dist/index.js +0 -0
- package/dist/index.js.map +292 -0
- package/package.json +30 -33
- package/README.md +0 -15
package/package.json
CHANGED
|
@@ -1,44 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@v5x/cli",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
"type": "module",
|
|
3
|
+
"version": "0.0.19",
|
|
4
|
+
"description": "modern v5 development",
|
|
5
|
+
"author": "beanarchystudios",
|
|
7
6
|
"bin": {
|
|
8
|
-
"
|
|
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
|
-
"
|
|
28
|
-
"dev": "bun
|
|
29
|
-
"
|
|
30
|
-
"prepublishOnly": "bun run
|
|
31
|
-
"
|
|
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
|
-
"
|
|
34
|
-
"
|
|
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
|
-
"@
|
|
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
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"unzipit": "^1.4.0"
|
|
37
|
+
"bunli": {
|
|
38
|
+
"entry": "./src/index.ts",
|
|
39
|
+
"outDir": "./dist"
|
|
43
40
|
}
|
|
44
41
|
}
|