@vicinae/api 0.4.0 → 0.5.1
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/api/environment.d.ts +7 -0
- package/package.json +12 -13
|
@@ -114,5 +114,12 @@ export interface Environment {
|
|
|
114
114
|
* @deprecated Use the top-level prop `launchContext` instead.
|
|
115
115
|
*/
|
|
116
116
|
launchContext?: LaunchContext;
|
|
117
|
+
/**
|
|
118
|
+
* The Vicinae version. Vicinae extensions should rely on this and ignore `raycastVersion`.
|
|
119
|
+
*/
|
|
120
|
+
vicinaeVersion: {
|
|
121
|
+
tag: string;
|
|
122
|
+
commit: string;
|
|
123
|
+
};
|
|
117
124
|
}
|
|
118
125
|
export declare const environment: Environment;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vicinae/api",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "TypeScript SDK to build Vicinae extensions",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -26,25 +26,27 @@
|
|
|
26
26
|
"main": "dist/index.js",
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@jgoz/esbuild-plugin-typecheck": "^4.0.3",
|
|
29
|
-
"
|
|
29
|
+
"react": "^18.1.0",
|
|
30
|
+
"@types/react": "^18.1.0",
|
|
31
|
+
"@types/node": "^20.8.10",
|
|
30
32
|
"chokidar": "^4.0.3",
|
|
31
33
|
"esbuild": "^0.25.2",
|
|
32
|
-
"ts-proto": "^2.7.5",
|
|
33
|
-
"@types/react": "^18.1.0",
|
|
34
|
-
"react": "^18.1.0",
|
|
35
34
|
"@oclif/core": "^4",
|
|
36
35
|
"@oclif/plugin-help": "^6",
|
|
37
36
|
"@oclif/plugin-plugins": "^5",
|
|
38
37
|
"chalk": "^5.6.0",
|
|
39
38
|
"zod": "^4.0.17"
|
|
40
39
|
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"@types/react": "18.1.0",
|
|
42
|
+
"@types/node": "20.8.10"
|
|
43
|
+
},
|
|
41
44
|
"devDependencies": {
|
|
42
45
|
"@eslint/compat": "^1",
|
|
43
46
|
"@oclif/prettier-config": "^0.2.1",
|
|
44
47
|
"@oclif/test": "^4",
|
|
45
48
|
"@types/chai": "^4",
|
|
46
49
|
"@types/mocha": "^10",
|
|
47
|
-
"@types/node": "^18",
|
|
48
50
|
"chai": "^4",
|
|
49
51
|
"eslint": "^9",
|
|
50
52
|
"eslint-config-oclif": "^6",
|
|
@@ -53,7 +55,8 @@
|
|
|
53
55
|
"oclif": "^4",
|
|
54
56
|
"shx": "^0.3.3",
|
|
55
57
|
"ts-node": "^10",
|
|
56
|
-
"typescript": "^5"
|
|
58
|
+
"typescript": "^5",
|
|
59
|
+
"ts-proto": "^2.7.5"
|
|
57
60
|
},
|
|
58
61
|
"oclif": {
|
|
59
62
|
"bin": "vici",
|
|
@@ -63,11 +66,7 @@
|
|
|
63
66
|
"@oclif/plugin-help"
|
|
64
67
|
],
|
|
65
68
|
"topicSeparator": " ",
|
|
66
|
-
"topics": {
|
|
67
|
-
"hello": {
|
|
68
|
-
"description": "Say hello to the world and others"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
69
|
+
"topics": {}
|
|
71
70
|
},
|
|
72
|
-
"repository": "vicinaehq/
|
|
71
|
+
"repository": "vicinaehq/vicinae"
|
|
73
72
|
}
|