@pixelkit-labs/cli 1.5.5 → 1.5.7
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 -21
- package/README.md +70 -69
- package/build/index.d.ts +1 -1
- package/build/index.js +209 -16
- package/index.ts +715 -515
- package/package.json +50 -50
package/package.json
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@pixelkit-labs/cli",
|
|
3
|
-
"version": "1.5.
|
|
4
|
-
"description": "pixelkit doctor: tells you why a PixelKit hardware reading is unavailable instead of leaving you guessing.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"pixelkit",
|
|
7
|
-
"expo",
|
|
8
|
-
"react-native",
|
|
9
|
-
"android",
|
|
10
|
-
"pixel",
|
|
11
|
-
"cli",
|
|
12
|
-
"doctor",
|
|
13
|
-
"adb"
|
|
14
|
-
],
|
|
15
|
-
"license": "MIT",
|
|
16
|
-
"author": "Traves Theberge",
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/PixelKit-Labs/pixelkit-cli.git"
|
|
20
|
-
},
|
|
21
|
-
"homepage": "https://github.com/PixelKit-Labs/pixelkit-cli#readme",
|
|
22
|
-
"bugs": {
|
|
23
|
-
"url": "https://github.com/PixelKit-Labs/pixelkit-cli/issues"
|
|
24
|
-
},
|
|
25
|
-
"bin": {
|
|
26
|
-
"pixelkit": "
|
|
27
|
-
},
|
|
28
|
-
"main": "build/index.js",
|
|
29
|
-
"types": "build/index.d.ts",
|
|
30
|
-
"files": [
|
|
31
|
-
"build",
|
|
32
|
-
"index.ts",
|
|
33
|
-
"README.md",
|
|
34
|
-
"LICENSE"
|
|
35
|
-
],
|
|
36
|
-
"engines": {
|
|
37
|
-
"node": ">=18"
|
|
38
|
-
},
|
|
39
|
-
"publishConfig": {
|
|
40
|
-
"access": "public"
|
|
41
|
-
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"build": "tsc -p tsconfig.json",
|
|
44
|
-
"prepublishOnly": "npm run build"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"typescript": "~6.0.3",
|
|
48
|
-
"@types/node": "^22.10.2"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@pixelkit-labs/cli",
|
|
3
|
+
"version": "1.5.7",
|
|
4
|
+
"description": "pixelkit doctor: tells you why a PixelKit hardware reading is unavailable instead of leaving you guessing.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pixelkit",
|
|
7
|
+
"expo",
|
|
8
|
+
"react-native",
|
|
9
|
+
"android",
|
|
10
|
+
"pixel",
|
|
11
|
+
"cli",
|
|
12
|
+
"doctor",
|
|
13
|
+
"adb"
|
|
14
|
+
],
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": "Traves Theberge",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/PixelKit-Labs/pixelkit-cli.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/PixelKit-Labs/pixelkit-cli#readme",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/PixelKit-Labs/pixelkit-cli/issues"
|
|
24
|
+
},
|
|
25
|
+
"bin": {
|
|
26
|
+
"pixelkit": "build/index.js"
|
|
27
|
+
},
|
|
28
|
+
"main": "build/index.js",
|
|
29
|
+
"types": "build/index.d.ts",
|
|
30
|
+
"files": [
|
|
31
|
+
"build",
|
|
32
|
+
"index.ts",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=18"
|
|
38
|
+
},
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsc -p tsconfig.json",
|
|
44
|
+
"prepublishOnly": "npm run build"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"typescript": "~6.0.3",
|
|
48
|
+
"@types/node": "^22.10.2"
|
|
49
|
+
}
|
|
50
|
+
}
|