@lark-codem/codem-core-win32-x64-msvc 0.0.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.
Files changed (3) hide show
  1. package/LICENSE +6 -0
  2. package/codem-core +3 -0
  3. package/package.json +20 -0
package/LICENSE ADDED
@@ -0,0 +1,6 @@
1
+ © Lark Technologies Pte. Ltd. All rights reserved. Use is subject to the Legal Agreements outlined here:
2
+
3
+ Feishu User Terms of Service [https://www.feishu.cn/terms]
4
+ Feishu Privacy Policy [https://www.feishu.cn/privacy]
5
+
6
+ Copyright (c) 2026 Lark Technologies Pte. Ltd.
package/codem-core ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env sh
2
+ echo "placeholder package; install a real codem-core version" >&2
3
+ exit 1
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@lark-codem/codem-core-win32-x64-msvc",
3
+ "version": "0.0.0",
4
+ "description": "Platform-specific CodeM binary for win32-x64-msvc.",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "os": [
7
+ "win32"
8
+ ],
9
+ "cpu": [
10
+ "x64"
11
+ ],
12
+ "files": [
13
+ "codem-core",
14
+ "LICENSE"
15
+ ],
16
+ "publishConfig": {
17
+ "registry": "https://registry.npmjs.org",
18
+ "access": "public"
19
+ }
20
+ }