@mrclrchtr/supi-tree-sitter 1.14.2 → 1.15.0
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/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/package.json +12 -3
- package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/src/context/context-provider-registry.ts +1 -1
- package/node_modules/@mrclrchtr/supi-code-runtime/package.json +16 -7
- package/node_modules/@mrclrchtr/supi-core/package.json +12 -3
- package/node_modules/@mrclrchtr/supi-core/src/context/context-provider-registry.ts +1 -1
- package/package.json +21 -10
package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/package.json
CHANGED
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrclrchtr/supi-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.0",
|
|
4
4
|
"description": "SuPi core — shared infrastructure for SuPi extensions (XML context tags, config system)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/mrclrchtr/supi.git"
|
|
8
|
+
"url": "git+https://github.com/mrclrchtr/supi.git",
|
|
9
|
+
"directory": "packages/supi-core"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/mrclrchtr/supi/tree/main/packages/supi-core#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/mrclrchtr/supi/issues"
|
|
9
14
|
},
|
|
10
15
|
"publishConfig": {
|
|
11
16
|
"access": "public"
|
|
12
17
|
},
|
|
13
18
|
"keywords": [
|
|
14
19
|
"pi",
|
|
15
|
-
"pi-coding-agent"
|
|
20
|
+
"pi-coding-agent",
|
|
21
|
+
"supi",
|
|
22
|
+
"extension-utils",
|
|
23
|
+
"settings",
|
|
24
|
+
"configuration"
|
|
16
25
|
],
|
|
17
26
|
"files": [
|
|
18
27
|
"src/**/*.ts",
|
|
@@ -1,26 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrclrchtr/supi-code-runtime",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.0",
|
|
4
4
|
"description": "SuPi code-runtime — shared workspace context, capability contracts, and canonical types for the code-understanding stack",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/mrclrchtr/supi.git"
|
|
8
|
+
"url": "git+https://github.com/mrclrchtr/supi.git",
|
|
9
|
+
"directory": "packages/supi-code-runtime"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/mrclrchtr/supi/tree/main/packages/supi-code-runtime#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/mrclrchtr/supi/issues"
|
|
9
14
|
},
|
|
10
15
|
"publishConfig": {
|
|
11
16
|
"access": "public"
|
|
12
17
|
},
|
|
13
18
|
"keywords": [
|
|
14
19
|
"pi",
|
|
15
|
-
"pi-coding-agent"
|
|
20
|
+
"pi-coding-agent",
|
|
21
|
+
"supi",
|
|
22
|
+
"code-intelligence",
|
|
23
|
+
"workspace-context",
|
|
24
|
+
"provider-api"
|
|
16
25
|
],
|
|
17
26
|
"files": [
|
|
18
27
|
"src/**/*.ts",
|
|
19
28
|
"!__tests__"
|
|
20
29
|
],
|
|
21
30
|
"dependencies": {
|
|
22
|
-
"@mrclrchtr/supi-core": "1.
|
|
31
|
+
"@mrclrchtr/supi-core": "1.15.0"
|
|
23
32
|
},
|
|
33
|
+
"bundledDependencies": [
|
|
34
|
+
"@mrclrchtr/supi-core"
|
|
35
|
+
],
|
|
24
36
|
"peerDependencies": {
|
|
25
37
|
"@earendil-works/pi-coding-agent": "*"
|
|
26
38
|
},
|
|
@@ -29,9 +41,6 @@
|
|
|
29
41
|
"optional": true
|
|
30
42
|
}
|
|
31
43
|
},
|
|
32
|
-
"bundledDependencies": [
|
|
33
|
-
"@mrclrchtr/supi-core"
|
|
34
|
-
],
|
|
35
44
|
"main": "src/api.ts",
|
|
36
45
|
"exports": {
|
|
37
46
|
"./api": "./src/api.ts",
|
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrclrchtr/supi-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.0",
|
|
4
4
|
"description": "SuPi core — shared infrastructure for SuPi extensions (XML context tags, config system)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/mrclrchtr/supi.git"
|
|
8
|
+
"url": "git+https://github.com/mrclrchtr/supi.git",
|
|
9
|
+
"directory": "packages/supi-core"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/mrclrchtr/supi/tree/main/packages/supi-core#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/mrclrchtr/supi/issues"
|
|
9
14
|
},
|
|
10
15
|
"publishConfig": {
|
|
11
16
|
"access": "public"
|
|
12
17
|
},
|
|
13
18
|
"keywords": [
|
|
14
19
|
"pi",
|
|
15
|
-
"pi-coding-agent"
|
|
20
|
+
"pi-coding-agent",
|
|
21
|
+
"supi",
|
|
22
|
+
"extension-utils",
|
|
23
|
+
"settings",
|
|
24
|
+
"configuration"
|
|
16
25
|
],
|
|
17
26
|
"files": [
|
|
18
27
|
"src/**/*.ts",
|
package/package.json
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrclrchtr/supi-tree-sitter",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.0",
|
|
4
4
|
"description": "SuPi Tree-sitter extension — structural AST analysis for pi",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/mrclrchtr/supi.git"
|
|
8
|
+
"url": "git+https://github.com/mrclrchtr/supi.git",
|
|
9
|
+
"directory": "packages/supi-tree-sitter"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/mrclrchtr/supi/tree/main/packages/supi-tree-sitter#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/mrclrchtr/supi/issues"
|
|
9
14
|
},
|
|
10
15
|
"publishConfig": {
|
|
11
16
|
"access": "public"
|
|
@@ -13,7 +18,13 @@
|
|
|
13
18
|
"keywords": [
|
|
14
19
|
"pi-package",
|
|
15
20
|
"pi",
|
|
16
|
-
"pi-coding-agent"
|
|
21
|
+
"pi-coding-agent",
|
|
22
|
+
"pi-extension",
|
|
23
|
+
"tree-sitter",
|
|
24
|
+
"ast",
|
|
25
|
+
"syntax-tree",
|
|
26
|
+
"code-navigation",
|
|
27
|
+
"structural-search"
|
|
17
28
|
],
|
|
18
29
|
"files": [
|
|
19
30
|
"src/**/*.ts",
|
|
@@ -24,9 +35,13 @@
|
|
|
24
35
|
],
|
|
25
36
|
"dependencies": {
|
|
26
37
|
"web-tree-sitter": "^0.26.8",
|
|
27
|
-
"@mrclrchtr/supi-code-runtime": "1.
|
|
28
|
-
"@mrclrchtr/supi-core": "1.
|
|
38
|
+
"@mrclrchtr/supi-code-runtime": "1.15.0",
|
|
39
|
+
"@mrclrchtr/supi-core": "1.15.0"
|
|
29
40
|
},
|
|
41
|
+
"bundledDependencies": [
|
|
42
|
+
"@mrclrchtr/supi-code-runtime",
|
|
43
|
+
"@mrclrchtr/supi-core"
|
|
44
|
+
],
|
|
30
45
|
"peerDependencies": {
|
|
31
46
|
"@earendil-works/pi-ai": "*",
|
|
32
47
|
"@earendil-works/pi-coding-agent": "*",
|
|
@@ -47,12 +62,8 @@
|
|
|
47
62
|
"extensions": [
|
|
48
63
|
"./src/extension.ts"
|
|
49
64
|
],
|
|
50
|
-
"image": "https://raw.githubusercontent.com/mrclrchtr/supi/main/
|
|
65
|
+
"image": "https://raw.githubusercontent.com/mrclrchtr/supi/main/screenshots/supi-tree-sitter.png"
|
|
51
66
|
},
|
|
52
|
-
"bundledDependencies": [
|
|
53
|
-
"@mrclrchtr/supi-code-runtime",
|
|
54
|
-
"@mrclrchtr/supi-core"
|
|
55
|
-
],
|
|
56
67
|
"main": "src/api.ts",
|
|
57
68
|
"exports": {
|
|
58
69
|
"./api": "./src/api.ts",
|