dskcode 0.1.40 → 0.1.42
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/chunk-CV3ZB5VV.js +1 -0
- package/dist/deepseek-J25J2QL5.js +2 -0
- package/dist/index.js +1 -10012
- package/package.json +11 -11
- package/dist/chunk-LWOBXEMJ.js +0 -707
- package/dist/chunk-LWOBXEMJ.js.map +0 -1
- package/dist/deepseek-WFSVA5UQ.js +0 -9
- package/dist/deepseek-WFSVA5UQ.js.map +0 -1
- package/dist/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dskcode",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"repository": {
|
|
5
|
-
"type": "git",
|
|
6
|
-
"url": "git+https://github.com/Awu12277/deepseek-agent-cli/tree/main"
|
|
7
|
-
},
|
|
3
|
+
"version": "0.1.42",
|
|
8
4
|
"keywords": [
|
|
9
5
|
"cli",
|
|
10
6
|
"ink",
|
|
@@ -26,20 +22,22 @@
|
|
|
26
22
|
"files": [
|
|
27
23
|
"dist",
|
|
28
24
|
"README.md",
|
|
29
|
-
"LICENSE"
|
|
25
|
+
"LICENSE",
|
|
26
|
+
"!dist/**/*.map"
|
|
30
27
|
],
|
|
31
28
|
"scripts": {
|
|
32
29
|
"dev": "tsup --watch",
|
|
33
30
|
"build": "tsup",
|
|
31
|
+
"obfuscate": "node scripts/obfuscate.mjs",
|
|
32
|
+
"build:clean": "node scripts/clean-sourcemaps.mjs",
|
|
34
33
|
"type-check": "tsc --noEmit",
|
|
35
34
|
"lint": "oxlint src/ tests/",
|
|
36
35
|
"lint:fix": "oxlint --fix src/ tests/",
|
|
37
36
|
"format": "prettier --write src/ tests/",
|
|
38
37
|
"format:check": "prettier --check src/ tests/",
|
|
39
|
-
"test": "vitest run",
|
|
40
|
-
"test:
|
|
41
|
-
"
|
|
42
|
-
"prepublishOnly": "npm run build && npm run test"
|
|
38
|
+
"test": "vitest run --exclude 'tests/checkpoint.test.ts' --exclude 'tests/session-rewind.test.ts'",
|
|
39
|
+
"test:checkpoint": "vitest run tests/checkpoint.test.ts tests/session-rewind.test.ts",
|
|
40
|
+
"prepublishOnly": "npm run build && npm run test && npm run obfuscate && npm run build:clean"
|
|
43
41
|
},
|
|
44
42
|
"dependencies": {
|
|
45
43
|
"asciichart": "^1.5.25",
|
|
@@ -49,11 +47,13 @@
|
|
|
49
47
|
"ink": "^7.1.0",
|
|
50
48
|
"ink-spinner": "^5.0.0",
|
|
51
49
|
"ink-text-input": "^6.0.0",
|
|
52
|
-
"react": "^19.2.7"
|
|
50
|
+
"react": "^19.2.7",
|
|
51
|
+
"zod": "^3.25.76"
|
|
53
52
|
},
|
|
54
53
|
"devDependencies": {
|
|
55
54
|
"@types/node": "^22.14.0",
|
|
56
55
|
"@types/react": "^19.2.17",
|
|
56
|
+
"javascript-obfuscator": "^4.1.1",
|
|
57
57
|
"oxlint": "^1.71.0",
|
|
58
58
|
"oxlint-tsgolint": "^0.23.0",
|
|
59
59
|
"prettier": "^3.5.3",
|