dsh-feishu-auth 0.1.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.
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "dsh-feishu-auth",
3
+ "version": "0.1.0",
4
+ "description": "Feishu (Lark) OAuth login gate for the DeepSeek Harness web GUI.",
5
+ "keywords": [
6
+ "dsh",
7
+ "dsh-plugin",
8
+ "deepseek-harness",
9
+ "feishu",
10
+ "lark",
11
+ "auth",
12
+ "login",
13
+ "oauth",
14
+ "security",
15
+ "access-control"
16
+ ],
17
+ "type": "module",
18
+ "main": "lib/index.js",
19
+ "exports": {
20
+ ".": "./lib/index.js",
21
+ "./package.json": "./package.json"
22
+ },
23
+ "files": [
24
+ "lib/",
25
+ "docs/",
26
+ "cordis.patch.yml",
27
+ "enable.patch.yml",
28
+ "disable.patch.yml",
29
+ "README.md",
30
+ "AGENTS.md"
31
+ ],
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/jianghuifr/dsh-feishu-auth.git"
35
+ },
36
+ "homepage": "https://github.com/jianghuifr/dsh-feishu-auth#readme",
37
+ "bugs": {
38
+ "url": "https://github.com/jianghuifr/dsh-feishu-auth/issues"
39
+ },
40
+ "dsh": {
41
+ "bundle": {
42
+ "patch": "./cordis.patch.yml"
43
+ }
44
+ },
45
+ "scripts": {
46
+ "lint": "eslint .",
47
+ "test": "node --test",
48
+ "verify": "npm run lint && npm test",
49
+ "prepublishOnly": "npm run verify"
50
+ },
51
+ "devDependencies": {
52
+ "@eslint/js": "^10.0.1",
53
+ "eslint": "^10.10.0"
54
+ },
55
+ "engines": {
56
+ "node": ">=22.19.0"
57
+ },
58
+ "publishConfig": {
59
+ "access": "public"
60
+ },
61
+ "license": "MIT"
62
+ }