codemap-typescript 0.2.2__tar.gz → 0.3.0__tar.gz
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.
- {codemap_typescript-0.2.2 → codemap_typescript-0.3.0}/PKG-INFO +2 -2
- {codemap_typescript-0.2.2 → codemap_typescript-0.3.0}/pyproject.toml +2 -2
- {codemap_typescript-0.2.2 → codemap_typescript-0.3.0}/.gitignore +0 -0
- {codemap_typescript-0.2.2 → codemap_typescript-0.3.0}/README.md +0 -0
- {codemap_typescript-0.2.2 → codemap_typescript-0.3.0}/src/codemap_typescript/__init__.py +0 -0
- {codemap_typescript-0.2.2 → codemap_typescript-0.3.0}/src/codemap_typescript/indexer.py +0 -0
- {codemap_typescript-0.2.2 → codemap_typescript-0.3.0}/tests/__init__.py +0 -0
- {codemap_typescript-0.2.2 → codemap_typescript-0.3.0}/tests/test_indexer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codemap-typescript
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: TypeScript indexer plugin for CodeMap (https://github.com/qxbyte/codemap)
|
|
5
5
|
Project-URL: Homepage, https://github.com/qxbyte/codemap
|
|
6
6
|
Author: CodeMap Contributors
|
|
@@ -10,7 +10,7 @@ Classifier: Development Status :: 3 - Alpha
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Topic :: Software Development
|
|
12
12
|
Requires-Python: >=3.11
|
|
13
|
-
Requires-Dist: codemap-core<0.
|
|
13
|
+
Requires-Dist: codemap-core<0.4,>=0.3.0
|
|
14
14
|
Requires-Dist: tree-sitter-typescript>=0.23
|
|
15
15
|
Requires-Dist: tree-sitter>=0.25
|
|
16
16
|
Provides-Extra: dev
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "codemap-typescript"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.3.0"
|
|
8
8
|
description = "TypeScript indexer plugin for CodeMap (https://github.com/qxbyte/codemap)"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -20,7 +20,7 @@ classifiers = [
|
|
|
20
20
|
# protocols this plugin implements. We don't pin a version because the
|
|
21
21
|
# protocol surface is intentionally narrow and stable for now.
|
|
22
22
|
dependencies = [
|
|
23
|
-
"codemap-core>=0.
|
|
23
|
+
"codemap-core>=0.3.0,<0.4",
|
|
24
24
|
"tree-sitter>=0.25",
|
|
25
25
|
"tree-sitter-typescript>=0.23",
|
|
26
26
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|