dsh-cursor-subscription 0.5.4 → 0.5.6
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 +12 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-cursor-subscription",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.6",
|
|
4
4
|
"packageManager": "pnpm@11.19.0",
|
|
5
5
|
"description": "Cursor subscription for DeepSeek Harness with browser login, token refresh, model discovery, and the Cursor Agent chat protocol",
|
|
6
6
|
"type": "module",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
|
-
"test": "node --test tests/*.test.mjs"
|
|
39
|
+
"test": "node --test tests/*.test.mjs",
|
|
40
|
+
"prepublishOnly": "pnpm test"
|
|
40
41
|
},
|
|
41
42
|
"keywords": [
|
|
42
43
|
"dsh-plugin",
|
|
@@ -49,8 +50,16 @@
|
|
|
49
50
|
"oauth",
|
|
50
51
|
"pkce"
|
|
51
52
|
],
|
|
52
|
-
"author": "
|
|
53
|
+
"author": "orrinzeng",
|
|
54
|
+
"repository": {
|
|
55
|
+
"type": "git",
|
|
56
|
+
"url": "https://github.com/orrinzeng/dsh-cursor-subscription"
|
|
57
|
+
},
|
|
53
58
|
"license": "MIT",
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public",
|
|
61
|
+
"registry": "https://registry.npmjs.org/"
|
|
62
|
+
},
|
|
54
63
|
"engines": {
|
|
55
64
|
"node": "^22.19.0 || >=24.0.0"
|
|
56
65
|
},
|
|
@@ -71,4 +80,3 @@
|
|
|
71
80
|
"react": "^18.2.0"
|
|
72
81
|
}
|
|
73
82
|
}
|
|
74
|
-
|