@lark-project/meegle 0.0.15 → 0.0.17

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 (31) hide show
  1. package/README.md +81 -1
  2. package/README.zh-CN.md +80 -1
  3. package/THIRD_PARTY_NOTICES.md +76 -0
  4. package/bin/meegle-darwin-arm64 +0 -0
  5. package/bin/meegle-darwin-x64 +0 -0
  6. package/bin/meegle-linux-arm64 +0 -0
  7. package/bin/meegle-linux-x64 +0 -0
  8. package/bin/meegle-win32-arm64.exe +0 -0
  9. package/bin/meegle-win32-x64.exe +0 -0
  10. package/package.json +5 -3
  11. package/third_party_licenses/github.com/cespare/xxhash/v2/LICENSE.txt +22 -0
  12. package/third_party_licenses/github.com/clipperhouse/displaywidth/LICENSE +21 -0
  13. package/third_party_licenses/github.com/clipperhouse/uax29/v2/graphemes/LICENSE +21 -0
  14. package/third_party_licenses/github.com/fatih/color/LICENSE.md +20 -0
  15. package/third_party_licenses/github.com/mattn/go-colorable/LICENSE +21 -0
  16. package/third_party_licenses/github.com/mattn/go-isatty/LICENSE +9 -0
  17. package/third_party_licenses/github.com/mattn/go-runewidth/LICENSE +21 -0
  18. package/third_party_licenses/github.com/mdp/qrterminal/v3/LICENSE +19 -0
  19. package/third_party_licenses/github.com/olekukonko/cat/LICENSE +21 -0
  20. package/third_party_licenses/github.com/olekukonko/errors/LICENSE +21 -0
  21. package/third_party_licenses/github.com/olekukonko/ll/LICENSE +21 -0
  22. package/third_party_licenses/github.com/olekukonko/tablewriter/LICENSE.md +19 -0
  23. package/third_party_licenses/github.com/pkg/browser/LICENSE +23 -0
  24. package/third_party_licenses/github.com/spf13/cobra/LICENSE.txt +174 -0
  25. package/third_party_licenses/github.com/spf13/pflag/LICENSE +28 -0
  26. package/third_party_licenses/golang.org/x/crypto/pbkdf2/LICENSE +27 -0
  27. package/third_party_licenses/golang.org/x/sys/unix/LICENSE +27 -0
  28. package/third_party_licenses/golang.org/x/term/LICENSE +27 -0
  29. package/third_party_licenses/gopkg.in/yaml.v3/LICENSE +50 -0
  30. package/third_party_licenses/gopkg.in/yaml.v3/NOTICE +13 -0
  31. package/third_party_licenses/rsc.io/qr/LICENSE +27 -0
package/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
 
5
5
  Command-line tool for [Meegle](https://meegle.com?utm_source=github&utm_medium=readme&utm_campaign=meegle_cli) ([Lark Project](https://project.feishu.cn?utm_source=github&utm_medium=readme&utm_campaign=meegle_cli)). Manage work items, schedules, and data from your terminal — no browser needed.
6
6
 
7
+
7
8
  ## Installation
8
9
 
9
10
  ```bash
@@ -29,6 +30,28 @@ meegle workitem --help
29
30
  meegle inspect workitem.create
30
31
  ```
31
32
 
33
+ ## Non-interactive setup (CI / agent shells / Claude Code)
34
+
35
+ `meegle auth login` defaults to an arrow-key host picker plus the
36
+ Authorization Code OAuth flow. Both require a real TTY and a local browser
37
+ callback, so they will fail or hang in environments such as CI runners,
38
+ pipes, or agent shells like Claude Code.
39
+
40
+ In those environments use the Device Code flow instead — it prints a URL
41
+ that the operator opens in any browser to grant access:
42
+
43
+ ```bash
44
+ # Option A: pass the host inline each time
45
+ meegle auth login --device-code --host <host>
46
+
47
+ # Option B: persist the host once, then log in
48
+ meegle config set host <host>
49
+ meegle auth login --device-code
50
+ ```
51
+
52
+ Examples of `<host>`: `project.feishu.cn`, `meegle.com`, or your
53
+ self-hosted tenant domain such as `your-tenant.example.com`.
54
+
32
55
  ## Commands
33
56
 
34
57
  ### workitem — Work Items
@@ -394,6 +417,55 @@ Main config options:
394
417
  | Field | Description | Examples |
395
418
  |-------|-------------|----------|
396
419
  | `host` | Site domain | `project.feishu.cn`, `meegle.com` |
420
+ | `user_access_token` | User access token; use `${VAR}` to read from an environment variable | `${CI_MEEGLE_TOKEN}` |
421
+ | `access_token_header` | Custom HTTP header name that carries the token; empty falls back to default `Authorization: Bearer <token>` | `x-meegle-auth` |
422
+
423
+ ### Sandbox / CI: Direct Environment-Variable Injection
424
+
425
+ Two well-known environment variables are read directly at CLI startup and override the matching profile fields without requiring any `config set`:
426
+
427
+ ```bash
428
+ export MEEGLE_HOST=project.feishu.cn
429
+ export MEEGLE_USER_ACCESS_TOKEN=<your-user-token>
430
+ meegle workitem get-brief --work_item_id 123
431
+ ```
432
+
433
+ Either variable may be set independently. When this path is taken, the CLI bypasses the keychain and does not attempt to refresh on 401 — the caller is responsible for rotating the env value.
434
+
435
+ ### Custom Auth Header
436
+
437
+ By default the token is sent via the standard `Authorization: Bearer <token>` header. If the backend requires a different header (and rejects requests that carry `Authorization`), opt in with `access_token_header`:
438
+
439
+ ```bash
440
+ meegle config set access_token_header x-meegle-auth
441
+ ```
442
+
443
+ Or override at runtime via env var:
444
+
445
+ ```bash
446
+ export MEEGLE_ACCESS_TOKEN_HEADER=x-meegle-auth
447
+ ```
448
+
449
+ When enabled the CLI sends `<header>: <token>` with the raw token (no `Bearer ` prefix) and **omits `Authorization` entirely** — suitable for backends that reject requests carrying both headers.
450
+
451
+ ### Environment Variable Templates
452
+
453
+ If your runtime exposes a variable with a name other than `MEEGLE_*`, bind it through `config.json` using a `${VAR}` placeholder. The placeholder is resolved against the process environment at runtime. This keeps secrets out of `config.json` while adapting to whatever variable name your runtime (Docker, Kubernetes, CI system) already injects.
454
+
455
+ ```json
456
+ {
457
+ "current": "prod",
458
+ "profiles": {
459
+ "prod": { "host": "project.feishu.cn", "user_access_token": "${PROD_CI_TOKEN}" },
460
+ "staging": { "host": "staging.feishu.cn", "user_access_token": "${STAGING_CI_TOKEN}" }
461
+ }
462
+ }
463
+ ```
464
+
465
+ Rules:
466
+ - Only whole-string placeholders are recognized. `"${X}"` is expanded; `"Bearer ${X}"` is treated as a literal.
467
+ - When a referenced variable is unset or empty, the CLI fails fast and reports the field path and variable name.
468
+ - When `user_access_token` is configured, it takes precedence over any token stored locally by `meegle auth login`. Because this mode has no refresh path, rotate the environment value yourself when the server returns 401.
397
469
 
398
470
  ### Multi-Environment Profiles
399
471
 
@@ -433,4 +505,12 @@ The command list is cached automatically and refreshed silently in the backgroun
433
505
 
434
506
  ## License
435
507
 
436
- MIT © Lark Technologies Pte. Ltd.
508
+ This project is licensed under the **MIT License**.
509
+
510
+ When running, it calls Lark/Feishu Open Platform APIs. To use these APIs, you must comply with the following agreements and privacy policies:
511
+
512
+ - [Feishu User Terms of Service](https://www.feishu.cn/terms)
513
+ - [Feishu Privacy Policy](https://www.feishu.cn/privacy)
514
+ - [Feishu Open Platform App Service Provider Security Management Specifications](https://open.feishu.cn/document/uAjLw4CM/uMzNwEjLzcDMx4yM3ATM/management-practice/app-service-provider-security-management-specifications)
515
+ - [Lark User Terms of Service](https://www.larksuite.com/user-terms-of-service)
516
+ - [Lark Privacy Policy](https://www.larksuite.com/privacy-policy)
package/README.zh-CN.md CHANGED
@@ -4,6 +4,7 @@
4
4
 
5
5
  飞书项目([Meegle](https://meegle.com?utm_source=github&utm_medium=readme&utm_campaign=meegle_cli) / [Lark Project](https://project.feishu.cn?utm_source=github&utm_medium=readme&utm_campaign=meegle_cli))命令行工具。在终端中管理工作项、查看排期、搜索数据,无需打开浏览器。
6
6
 
7
+
7
8
  ## 安装
8
9
 
9
10
  ```bash
@@ -29,6 +30,27 @@ meegle workitem --help
29
30
  meegle inspect workitem.create
30
31
  ```
31
32
 
33
+ ## 非交互环境下的初始化(CI / Agent / Claude Code)
34
+
35
+ `meegle auth login` 默认使用上下选择菜单 + Authorization Code OAuth 流程,
36
+ 两者都依赖真实终端和本地浏览器回调。在 CI Runner、管道、Claude Code 这类
37
+ 没有 TTY 的环境里会直接报错或挂起。
38
+
39
+ 这些场景请改用 Device Code 流程 —— 命令会输出一个 URL,让操作者在任意浏览
40
+ 器里完成授权:
41
+
42
+ ```bash
43
+ # 方式 A:每次显式传入 host
44
+ meegle auth login --device-code --host <host>
45
+
46
+ # 方式 B:先持久化 host,再登录
47
+ meegle config set host <host>
48
+ meegle auth login --device-code
49
+ ```
50
+
51
+ `<host>` 示例:`project.feishu.cn`、`meegle.com`,或你的自建租户域名
52
+ (如 `your-tenant.example.com`)。
53
+
32
54
  ## 命令一览
33
55
 
34
56
  ### workitem — 工作项域
@@ -394,6 +416,55 @@ meegle config get host
394
416
  | 字段 | 说明 | 示例 |
395
417
  |------|------|------|
396
418
  | `host` | 站点域名 | `project.feishu.cn`、`meegle.com` |
419
+ | `user_access_token` | 用户访问令牌,支持 `${VAR}` 从环境变量读取 | `${CI_MEEGLE_TOKEN}` |
420
+ | `access_token_header` | 自定义承载 token 的 HTTP header 名;置空则用默认的 `Authorization: Bearer <token>` | `x-meegle-auth` |
421
+
422
+ ### 沙盒 / CI:直接注入环境变量
423
+
424
+ `MEEGLE_HOST` 和 `MEEGLE_USER_ACCESS_TOKEN` 两个约定名环境变量会在 CLI 启动时被直接读取,覆盖 profile 中的同名字段,无需任何 `config set`:
425
+
426
+ ```bash
427
+ export MEEGLE_HOST=project.feishu.cn
428
+ export MEEGLE_USER_ACCESS_TOKEN=<your-user-token>
429
+ meegle workitem get-brief --work_item_id 123
430
+ ```
431
+
432
+ 任一变量可以单独设置。走这个路径时 CLI 不访问 keychain,401 错误不会自动 refresh,由调用方自行轮转。
433
+
434
+ ### 自定义 Auth Header
435
+
436
+ 默认情况下 token 通过标准 `Authorization: Bearer <token>` 发送。若后端要求把 token 放到别的 header 里(且不允许带 `Authorization`),用 `access_token_header` 切换:
437
+
438
+ ```bash
439
+ meegle config set access_token_header x-meegle-auth
440
+ ```
441
+
442
+ 或通过环境变量临时覆盖:
443
+
444
+ ```bash
445
+ export MEEGLE_ACCESS_TOKEN_HEADER=x-meegle-auth
446
+ ```
447
+
448
+ 启用后 CLI 会以 `<header>: <token>` 发送裸值(无 `Bearer ` 前缀),并且**完全不发送** `Authorization` header —— 适用于对两种 header 共存敏感的后端。
449
+
450
+ ### 环境变量模板
451
+
452
+ 如果平台使用的环境变量名不是 `MEEGLE_*`,可以在 config.json 中用 `${VAR}` 占位符绑定任意字符串字段,运行时会用同名环境变量的值替换。这样既能避免在 config.json 里明文写敏感值,也能适配不同容器/CI 平台各自的变量命名习惯。
453
+
454
+ ```json
455
+ {
456
+ "current": "prod",
457
+ "profiles": {
458
+ "prod": { "host": "project.feishu.cn", "user_access_token": "${PROD_CI_TOKEN}" },
459
+ "staging": { "host": "staging.feishu.cn", "user_access_token": "${STAGING_CI_TOKEN}" }
460
+ }
461
+ }
462
+ ```
463
+
464
+ 规则:
465
+ - 仅识别**整串形态**的占位符。`"${X}"` 会被展开;`"Bearer ${X}"` 按字面量处理,不展开。
466
+ - 引用的环境变量未设置或为空时 CLI **fail fast**,错误信息会带上字段路径和变量名。
467
+ - 当配置了 `user_access_token` 时,它会覆盖 `meegle auth login` 在本地 keychain 里写入的令牌。由于这种模式下没有本地 refresh 能力,服务端返回 401 时需要自行轮转环境变量值。
397
468
 
398
469
  ### 多环境 Profile
399
470
 
@@ -433,4 +504,12 @@ meegle auth login
433
504
 
434
505
  ## License
435
506
 
436
- MIT © Lark Technologies Pte. Ltd.
507
+ 本项目基于 **MIT 许可证** 开源。
508
+
509
+ 该软件运行时会调用 Lark/飞书开放平台的 API,使用这些 API 需要遵守如下协议和隐私政策:
510
+
511
+ - [飞书用户服务协议](https://www.feishu.cn/terms)
512
+ - [飞书隐私政策](https://www.feishu.cn/privacy)
513
+ - [飞书开放平台应用服务商安全管理规范](https://open.feishu.cn/document/uAjLw4CM/uMzNwEjLzcDMx4yM3ATM/management-practice/app-service-provider-security-management-specifications)
514
+ - [Lark User Terms of Service](https://www.larksuite.com/user-terms-of-service)
515
+ - [Lark Privacy Policy](https://www.larksuite.com/privacy-policy)
@@ -0,0 +1,76 @@
1
+ # Third-Party Notices
2
+
3
+ This product — the `meegle` CLI distributed via the `@lark-project/meegle`
4
+ npm package and the standalone Go binaries under `dist/` — includes third-party
5
+ open-source software. Each component is listed below with its project URL,
6
+ license type, copyright holder, and the path to the full license text shipped
7
+ in the `third_party_licenses/` directory.
8
+
9
+ If you redistribute this product, you must retain this file and the
10
+ `third_party_licenses/` directory.
11
+
12
+ Inventory was generated with `go-licenses report ./cmd/meegle` against the
13
+ module graph pinned by `go.mod` / `go.sum`.
14
+
15
+ ---
16
+
17
+ ## Components
18
+
19
+ ### Direct dependencies
20
+
21
+ | Component | Version | License | Copyright | License file |
22
+ |---|---|---|---|---|
23
+ | [github.com/spf13/cobra](https://github.com/spf13/cobra) | v1.9.1 | Apache-2.0 | The Cobra Authors | [third_party_licenses/github.com/spf13/cobra/LICENSE.txt](third_party_licenses/github.com/spf13/cobra/LICENSE.txt) |
24
+ | [github.com/spf13/pflag](https://github.com/spf13/pflag) | v1.0.6 | BSD-3-Clause | (c) 2012 Alex Ogier; (c) 2012 The Go Authors | [third_party_licenses/github.com/spf13/pflag/LICENSE](third_party_licenses/github.com/spf13/pflag/LICENSE) |
25
+ | [github.com/olekukonko/tablewriter](https://github.com/olekukonko/tablewriter) | v1.1.4 | MIT | (C) 2014 Oleku Konko | [third_party_licenses/github.com/olekukonko/tablewriter/LICENSE.md](third_party_licenses/github.com/olekukonko/tablewriter/LICENSE.md) |
26
+ | [github.com/mdp/qrterminal/v3](https://github.com/mdp/qrterminal) | v3.2.1 | MIT | (c) 2019 Mark Percival | [third_party_licenses/github.com/mdp/qrterminal/v3/LICENSE](third_party_licenses/github.com/mdp/qrterminal/v3/LICENSE) |
27
+ | [github.com/pkg/browser](https://github.com/pkg/browser) | v0.0.0-20240102092130-5ac0b6a4141c | BSD-2-Clause | (c) 2014 Dave Cheney | [third_party_licenses/github.com/pkg/browser/LICENSE](third_party_licenses/github.com/pkg/browser/LICENSE) |
28
+ | [golang.org/x/crypto](https://cs.opensource.google/go/x/crypto) | v0.33.0 | BSD-3-Clause | (c) 2009 The Go Authors | [third_party_licenses/golang.org/x/crypto/pbkdf2/LICENSE](third_party_licenses/golang.org/x/crypto/pbkdf2/LICENSE) |
29
+ | [golang.org/x/sys](https://cs.opensource.google/go/x/sys) | v0.30.0 | BSD-3-Clause | (c) 2009 The Go Authors | [third_party_licenses/golang.org/x/sys/unix/LICENSE](third_party_licenses/golang.org/x/sys/unix/LICENSE) |
30
+ | [golang.org/x/term](https://cs.opensource.google/go/x/term) | v0.29.0 | BSD-3-Clause | (c) 2009 The Go Authors | [third_party_licenses/golang.org/x/term/LICENSE](third_party_licenses/golang.org/x/term/LICENSE) |
31
+ | [gopkg.in/yaml.v3](https://github.com/go-yaml/yaml) | v3.0.1 | MIT + Apache-2.0 | (c) 2011-2016 Canonical Ltd; (c) 2006-2011 Kirill Simonov | [third_party_licenses/gopkg.in/yaml.v3/LICENSE](third_party_licenses/gopkg.in/yaml.v3/LICENSE) · [NOTICE](third_party_licenses/gopkg.in/yaml.v3/NOTICE) |
32
+
33
+ ### Transitive dependencies
34
+
35
+ | Component | Version | License | Copyright | License file |
36
+ |---|---|---|---|---|
37
+ | [github.com/cespare/xxhash/v2](https://github.com/cespare/xxhash) | v2.3.0 | MIT | (c) 2016 Caleb Spare | [third_party_licenses/github.com/cespare/xxhash/v2/LICENSE.txt](third_party_licenses/github.com/cespare/xxhash/v2/LICENSE.txt) |
38
+ | [github.com/clipperhouse/displaywidth](https://github.com/clipperhouse/displaywidth) | v0.10.0 | MIT | (c) 2025 Matt Sherman | [third_party_licenses/github.com/clipperhouse/displaywidth/LICENSE](third_party_licenses/github.com/clipperhouse/displaywidth/LICENSE) |
39
+ | [github.com/clipperhouse/uax29/v2](https://github.com/clipperhouse/uax29) | v2.6.0 | MIT | (c) 2020 Matt Sherman | [third_party_licenses/github.com/clipperhouse/uax29/v2/graphemes/LICENSE](third_party_licenses/github.com/clipperhouse/uax29/v2/graphemes/LICENSE) |
40
+ | [github.com/fatih/color](https://github.com/fatih/color) | v1.18.0 | MIT | (c) 2013 Fatih Arslan | [third_party_licenses/github.com/fatih/color/LICENSE.md](third_party_licenses/github.com/fatih/color/LICENSE.md) |
41
+ | [github.com/mattn/go-colorable](https://github.com/mattn/go-colorable) | v0.1.14 | MIT | (c) 2016 Yasuhiro Matsumoto | [third_party_licenses/github.com/mattn/go-colorable/LICENSE](third_party_licenses/github.com/mattn/go-colorable/LICENSE) |
42
+ | [github.com/mattn/go-isatty](https://github.com/mattn/go-isatty) | v0.0.20 | MIT | (c) Yasuhiro Matsumoto | [third_party_licenses/github.com/mattn/go-isatty/LICENSE](third_party_licenses/github.com/mattn/go-isatty/LICENSE) |
43
+ | [github.com/mattn/go-runewidth](https://github.com/mattn/go-runewidth) | v0.0.19 | MIT | (c) 2016 Yasuhiro Matsumoto | [third_party_licenses/github.com/mattn/go-runewidth/LICENSE](third_party_licenses/github.com/mattn/go-runewidth/LICENSE) |
44
+ | [github.com/olekukonko/cat](https://github.com/olekukonko/cat) | v0.0.0-20250911104152-50322a0618f6 | MIT | (c) 2025 Oleku Konko | [third_party_licenses/github.com/olekukonko/cat/LICENSE](third_party_licenses/github.com/olekukonko/cat/LICENSE) |
45
+ | [github.com/olekukonko/errors](https://github.com/olekukonko/errors) | v1.2.0 | MIT | (c) 2025 Oleku Konko | [third_party_licenses/github.com/olekukonko/errors/LICENSE](third_party_licenses/github.com/olekukonko/errors/LICENSE) |
46
+ | [github.com/olekukonko/ll](https://github.com/olekukonko/ll) | v0.1.6 | MIT | (c) 2025 Oleku Konko | [third_party_licenses/github.com/olekukonko/ll/LICENSE](third_party_licenses/github.com/olekukonko/ll/LICENSE) |
47
+ | [rsc.io/qr](https://github.com/rsc/qr) | v0.2.0 | BSD-3-Clause | (c) 2009 The Go Authors | [third_party_licenses/rsc.io/qr/LICENSE](third_party_licenses/rsc.io/qr/LICENSE) |
48
+
49
+ > `github.com/inconshreveable/mousetrap` v1.1.0 (Apache-2.0) is a transitive
50
+ > dependency of `cobra` that is only compiled into the Windows binary. Its
51
+ > license text is bundled with the `win32-*` distributions when applicable.
52
+
53
+ ---
54
+
55
+ ## Go standard library
56
+
57
+ The Go standard library, runtime, and toolchain-provided packages are
58
+ distributed under the BSD-3-Clause license (© The Go Authors). See
59
+ <https://go.dev/LICENSE>. These are not enumerated individually above.
60
+
61
+ ---
62
+
63
+ ## How to refresh this file
64
+
65
+ ```bash
66
+ go install github.com/google/go-licenses@latest
67
+
68
+ # Inventory (CSV)
69
+ go-licenses report ./cmd/meegle
70
+
71
+ # Full license texts on disk
72
+ go-licenses save ./cmd/meegle --save_path=./third_party_licenses --force
73
+
74
+ # Supply-chain safety gate
75
+ go-licenses check ./cmd/meegle --disallowed_types=forbidden,restricted
76
+ ```
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-project/meegle",
3
- "version": "0.0.15",
3
+ "version": "0.0.17",
4
4
  "description": "Agent-First CLI for Meegle (Lark Project)",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -23,13 +23,15 @@
23
23
  "bin/meegle-*",
24
24
  "README.md",
25
25
  "README.zh-CN.md",
26
- "LICENSE"
26
+ "LICENSE",
27
+ "THIRD_PARTY_NOTICES.md",
28
+ "third_party_licenses/**"
27
29
  ],
28
30
  "publishConfig": {
29
31
  "tag": "beta"
30
32
  },
31
33
  "scripts": {
32
- "prepublishOnly": "cp ../../README.md ./README.md && cp ../../README.zh-CN.md ./README.zh-CN.md && cp ../../LICENSE ./LICENSE"
34
+ "prepublishOnly": "cp ../../README.zh-CN.md ./README.zh-CN.md && cp ../../LICENSE ./LICENSE && cp ../../THIRD_PARTY_NOTICES.md ./THIRD_PARTY_NOTICES.md && rm -rf ./third_party_licenses && cp -R ../../third_party_licenses ./third_party_licenses && cp ../../README.md ./README.md"
33
35
  },
34
36
  "keywords": [
35
37
  "meegle",
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2016 Caleb Spare
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Matt Sherman
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Matt Sherman
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2013 Fatih Arslan
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Yasuhiro Matsumoto
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,9 @@
1
+ Copyright (c) Yasuhiro MATSUMOTO <mattn.jp@gmail.com>
2
+
3
+ MIT License (Expat)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Yasuhiro Matsumoto
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,19 @@
1
+ Copyright 2019 Mark Percival <m@mdp.im>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Oleku Konko
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Oleku Konko
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Oleku Konko
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,19 @@
1
+ Copyright (C) 2014 by Oleku Konko
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
@@ -0,0 +1,23 @@
1
+ Copyright (c) 2014, Dave Cheney <dave@cheney.net>
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+
7
+ * Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+
10
+ * Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
15
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
18
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
20
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
21
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
22
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,174 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
@@ -0,0 +1,28 @@
1
+ Copyright (c) 2012 Alex Ogier. All rights reserved.
2
+ Copyright (c) 2012 The Go Authors. All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are
6
+ met:
7
+
8
+ * Redistributions of source code must retain the above copyright
9
+ notice, this list of conditions and the following disclaimer.
10
+ * Redistributions in binary form must reproduce the above
11
+ copyright notice, this list of conditions and the following disclaimer
12
+ in the documentation and/or other materials provided with the
13
+ distribution.
14
+ * Neither the name of Google Inc. nor the names of its
15
+ contributors may be used to endorse or promote products derived from
16
+ this software without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,27 @@
1
+ Copyright 2009 The Go Authors.
2
+
3
+ Redistribution and use in source and binary forms, with or without
4
+ modification, are permitted provided that the following conditions are
5
+ met:
6
+
7
+ * Redistributions of source code must retain the above copyright
8
+ notice, this list of conditions and the following disclaimer.
9
+ * Redistributions in binary form must reproduce the above
10
+ copyright notice, this list of conditions and the following disclaimer
11
+ in the documentation and/or other materials provided with the
12
+ distribution.
13
+ * Neither the name of Google LLC nor the names of its
14
+ contributors may be used to endorse or promote products derived from
15
+ this software without specific prior written permission.
16
+
17
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,27 @@
1
+ Copyright 2009 The Go Authors.
2
+
3
+ Redistribution and use in source and binary forms, with or without
4
+ modification, are permitted provided that the following conditions are
5
+ met:
6
+
7
+ * Redistributions of source code must retain the above copyright
8
+ notice, this list of conditions and the following disclaimer.
9
+ * Redistributions in binary form must reproduce the above
10
+ copyright notice, this list of conditions and the following disclaimer
11
+ in the documentation and/or other materials provided with the
12
+ distribution.
13
+ * Neither the name of Google LLC nor the names of its
14
+ contributors may be used to endorse or promote products derived from
15
+ this software without specific prior written permission.
16
+
17
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,27 @@
1
+ Copyright 2009 The Go Authors.
2
+
3
+ Redistribution and use in source and binary forms, with or without
4
+ modification, are permitted provided that the following conditions are
5
+ met:
6
+
7
+ * Redistributions of source code must retain the above copyright
8
+ notice, this list of conditions and the following disclaimer.
9
+ * Redistributions in binary form must reproduce the above
10
+ copyright notice, this list of conditions and the following disclaimer
11
+ in the documentation and/or other materials provided with the
12
+ distribution.
13
+ * Neither the name of Google LLC nor the names of its
14
+ contributors may be used to endorse or promote products derived from
15
+ this software without specific prior written permission.
16
+
17
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,50 @@
1
+
2
+ This project is covered by two different licenses: MIT and Apache.
3
+
4
+ #### MIT License ####
5
+
6
+ The following files were ported to Go from C files of libyaml, and thus
7
+ are still covered by their original MIT license, with the additional
8
+ copyright staring in 2011 when the project was ported over:
9
+
10
+ apic.go emitterc.go parserc.go readerc.go scannerc.go
11
+ writerc.go yamlh.go yamlprivateh.go
12
+
13
+ Copyright (c) 2006-2010 Kirill Simonov
14
+ Copyright (c) 2006-2011 Kirill Simonov
15
+
16
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
17
+ this software and associated documentation files (the "Software"), to deal in
18
+ the Software without restriction, including without limitation the rights to
19
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
20
+ of the Software, and to permit persons to whom the Software is furnished to do
21
+ so, subject to the following conditions:
22
+
23
+ The above copyright notice and this permission notice shall be included in all
24
+ copies or substantial portions of the Software.
25
+
26
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
31
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32
+ SOFTWARE.
33
+
34
+ ### Apache License ###
35
+
36
+ All the remaining project files are covered by the Apache license:
37
+
38
+ Copyright (c) 2011-2019 Canonical Ltd
39
+
40
+ Licensed under the Apache License, Version 2.0 (the "License");
41
+ you may not use this file except in compliance with the License.
42
+ You may obtain a copy of the License at
43
+
44
+ http://www.apache.org/licenses/LICENSE-2.0
45
+
46
+ Unless required by applicable law or agreed to in writing, software
47
+ distributed under the License is distributed on an "AS IS" BASIS,
48
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
49
+ See the License for the specific language governing permissions and
50
+ limitations under the License.
@@ -0,0 +1,13 @@
1
+ Copyright 2011-2016 Canonical Ltd.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
@@ -0,0 +1,27 @@
1
+ Copyright (c) 2009 The Go Authors. All rights reserved.
2
+
3
+ Redistribution and use in source and binary forms, with or without
4
+ modification, are permitted provided that the following conditions are
5
+ met:
6
+
7
+ * Redistributions of source code must retain the above copyright
8
+ notice, this list of conditions and the following disclaimer.
9
+ * Redistributions in binary form must reproduce the above
10
+ copyright notice, this list of conditions and the following disclaimer
11
+ in the documentation and/or other materials provided with the
12
+ distribution.
13
+ * Neither the name of Google Inc. nor the names of its
14
+ contributors may be used to endorse or promote products derived from
15
+ this software without specific prior written permission.
16
+
17
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.