@deepseek-code/cli-linux-x64 0.1.4

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 +4 -0
  2. package/bin/deepseek +0 -0
  3. package/package.json +28 -0
package/LICENSE ADDED
@@ -0,0 +1,4 @@
1
+ Copyright (c) 2026 DeepSeekCode contributors. All rights reserved.
2
+
3
+ This source tree is distributed without an open-source license unless a
4
+ separate written license is provided by the copyright holder.
package/bin/deepseek ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@deepseek-code/cli-linux-x64",
3
+ "version": "0.1.4",
4
+ "description": "Linux x64 binary for the DeepSeek Code CLI",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "homepage": "https://github.com/willamhou/DeepSeekCode",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/willamhou/DeepSeekCode.git",
10
+ "directory": "npm/platforms/linux-x64"
11
+ },
12
+ "os": [
13
+ "linux"
14
+ ],
15
+ "cpu": [
16
+ "x64"
17
+ ],
18
+ "files": [
19
+ "bin",
20
+ "LICENSE"
21
+ ],
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "engines": {
26
+ "node": ">=18"
27
+ }
28
+ }