@fedify/vocab-tools 2.0.0-pr.458.1785

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/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ MIT License
2
+
3
+ Copyright 2024–2025 Hong Minhee
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.
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ <!-- deno-fmt-ignore-file -->
2
+
3
+ @fedify/vocab-tools
4
+ ===============
5
+
6
+ This package contains the utilities for working with Activity
7
+ Vocabulary objects, which are auto-generated from the IDL.
8
+
9
+ Installation
10
+ ------------
11
+
12
+ ~~~~ bash
13
+ deno add @fedify/vocab-tools
14
+ ~~~~
15
+
16
+ ~~~~ bash
17
+ npm install @fedify/vocab-tools
18
+ ~~~~
19
+
20
+ ~~~~ bash
21
+ pnpm add @fedify/vocab-tools
22
+ ~~~~
23
+
24
+ ~~~~ bash
25
+ yarn add @fedify/vocab-tools
26
+ ~~~~
package/deno.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@fedify/vocab-tools",
3
+ "version": "2.0.0-pr.458.1785+f5e97597",
4
+ "license": "MIT",
5
+ "exports": {
6
+ ".": "./src/mod.ts"
7
+ },
8
+ "author": {
9
+ "name": "Hong Minhee",
10
+ "email": "hong@minhee.org",
11
+ "url": "https://hongminhee.org/"
12
+ },
13
+ "imports": {
14
+ "@cfworker/json-schema": "npm:@cfworker/json-schema@^4.1.1",
15
+ "byte-encodings": "npm:byte-encodings@^1.0.11",
16
+ "es-toolkit": "npm:es-toolkit@^1.39.10",
17
+ "yaml": "npm:yaml@^2.8.1"
18
+ },
19
+ "exclude": [
20
+ "dist",
21
+ "node_modules",
22
+ "src/schema.yaml"
23
+ ],
24
+ "tasks": {
25
+ "check": "deno fmt --check && deno lint && deno check src/*.ts",
26
+ "test": "deno test -A"
27
+ }
28
+ }