metascope 0.8.2 → 0.8.3
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/lib/package.js
CHANGED
|
@@ -4,13 +4,17 @@ import { nonEmptyString, stringArray } from "../utilities/schema-primitives.js";
|
|
|
4
4
|
import { resolve } from "node:path";
|
|
5
5
|
import is from "@sindresorhus/is";
|
|
6
6
|
import { z } from "zod";
|
|
7
|
-
import { PBXNativeTarget, XCRemoteSwiftPackageReference, XcodeProject } from "@
|
|
7
|
+
import { PBXNativeTarget, XCRemoteSwiftPackageReference, XcodeProject } from "@mshibanami-org/xcode";
|
|
8
8
|
//#region src/lib/sources/xcode-project-pbxproj.ts
|
|
9
9
|
/**
|
|
10
10
|
* Source and parser for Xcode `.pbxproj` project files.
|
|
11
11
|
*
|
|
12
|
-
* Uses the `@
|
|
13
|
-
* navigate the Xcode project object graph.
|
|
12
|
+
* Uses the `@mshibanami-org/xcode` package to parse the binary/ASCII plist
|
|
13
|
+
* format and navigate the Xcode project object graph.
|
|
14
|
+
*
|
|
15
|
+
* The `@mshibanami-org/xcode` dependency is a temporary fork of `@bacons/xcode`
|
|
16
|
+
* with security fixes, pending a new release from the original author. See:
|
|
17
|
+
* https://github.com/EvanBacon/xcode/issues/32
|
|
14
18
|
*
|
|
15
19
|
* Extracts metadata from:
|
|
16
20
|
*
|
|
@@ -18,7 +18,7 @@ declare const frontmatter: Template<{
|
|
|
18
18
|
Public: boolean;
|
|
19
19
|
Fork: boolean;
|
|
20
20
|
Published: boolean;
|
|
21
|
-
Status: "
|
|
21
|
+
Status: "unknown" | "maintainer" | "author" | "observer";
|
|
22
22
|
Tags: string[] | null;
|
|
23
23
|
Aliases: (string | null | undefined)[] | null;
|
|
24
24
|
License: string[] | null;
|
|
@@ -157,7 +157,7 @@ declare const templates: {
|
|
|
157
157
|
Public: boolean;
|
|
158
158
|
Fork: boolean;
|
|
159
159
|
Published: boolean;
|
|
160
|
-
Status: "
|
|
160
|
+
Status: "unknown" | "maintainer" | "author" | "observer";
|
|
161
161
|
Tags: string[] | null;
|
|
162
162
|
Aliases: (string | null | undefined)[] | null;
|
|
163
163
|
License: string[] | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "metascope",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"description": "A CLI tool and TypeScript library to easily extract metadata from all kinds of software repositories.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"metadata",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"dist/*"
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@bacons/xcode": "1.0.0-alpha.33",
|
|
46
45
|
"@kitschpatrol/tokei": "^2.0.2",
|
|
46
|
+
"@mshibanami-org/xcode": "^1.0.1",
|
|
47
47
|
"@sindresorhus/is": "^8.1.0",
|
|
48
48
|
"@types/mdast": "^4.0.4",
|
|
49
49
|
"@types/node": "~22.17.2",
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
"smol-toml": "^1.6.1",
|
|
71
71
|
"spdx-license-list": "^6.11.0",
|
|
72
72
|
"string-ts": "^2.3.1",
|
|
73
|
-
"tinyexec": "^1.2.
|
|
74
|
-
"tinyglobby": "^0.2.
|
|
73
|
+
"tinyexec": "^1.2.4",
|
|
74
|
+
"tinyglobby": "^0.2.17",
|
|
75
75
|
"unified": "^11.0.5",
|
|
76
76
|
"updates": "^17.17.3",
|
|
77
77
|
"web-tree-sitter": "^0.26.9",
|
|
@@ -95,9 +95,9 @@
|
|
|
95
95
|
"tree-sitter-python": "^0.25.0",
|
|
96
96
|
"tree-sitter-ruby": "^0.23.1",
|
|
97
97
|
"tsdown": "^0.22.1",
|
|
98
|
-
"tsx": "^4.22.
|
|
98
|
+
"tsx": "^4.22.4",
|
|
99
99
|
"typescript": "~5.9.3",
|
|
100
|
-
"vitest": "^4.1.
|
|
100
|
+
"vitest": "^4.1.8"
|
|
101
101
|
},
|
|
102
102
|
"engines": {
|
|
103
103
|
"node": ">=22.17.0"
|