clickgo-native 0.0.10 → 0.0.11
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/package.json +4 -4
- package/types/loader.d.ts +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clickgo-native",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "The software developed with ClickGo will run in Windows, Mac OS, Linux.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"clickgo",
|
|
@@ -9,17 +9,17 @@
|
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"author": "hanguoshuai",
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
|
-
"types": "./dist/index.ts",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"native": "electron ./dist/test"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@litert/eslint-plugin-rules": "^0.3.1",
|
|
18
|
-
"@types/node": "^24.0.
|
|
18
|
+
"@types/node": "^24.0.14",
|
|
19
19
|
"typescript": "^5.8.3"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"clickgo": "^3.16.
|
|
22
|
+
"clickgo": "^3.16.18",
|
|
23
23
|
"electron": "^37.2.1"
|
|
24
24
|
}
|
|
25
25
|
}
|
package/types/loader.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as litertLoader from '@litert/loader';
|
|
2
|
-
|
|
3
|
-
declare global {
|
|
4
|
-
type ILoader = litertLoader.ILoader;
|
|
5
|
-
type ILoaderUrl = litertLoader.ILoaderUrl;
|
|
6
|
-
|
|
7
|
-
const loader: typeof litertLoader.loader;
|
|
8
|
-
const __invoke: typeof litertLoader.__invoke;
|
|
9
|
-
const __preprocess: typeof litertLoader.__preprocess;
|
|
10
|
-
}
|