jmap-kit 0.0.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.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # jmap-kit
2
+
3
+ A comprehensive, type-safe JMAP SDK for building JMAP-based client applications.
4
+
5
+ This is a placeholder package. The first release is coming soon.
6
+
7
+ See the [GitHub repository](https://github.com/lachlanhunt/jmap-kit) for more information.
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "jmap-kit",
3
+ "version": "0.0.0",
4
+ "description": "A comprehensive, type-safe JMAP SDK for building JMAP-based client applications",
5
+ "author": "Lachlan Hunt <lachlan.hunt@lachy.id.au> (https://lachy.id.au)",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/lachlanhunt/jmap-kit.git"
10
+ },
11
+ "homepage": "https://github.com/lachlanhunt/jmap-kit#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/lachlanhunt/jmap-kit/issues"
14
+ },
15
+ "keywords": [
16
+ "jmap",
17
+ "email",
18
+ "rfc8620",
19
+ "rfc8621",
20
+ "typescript",
21
+ "client"
22
+ ]
23
+ }