@teistro/sdk 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 +14 -0
  2. package/package.json +12 -0
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # `@teistro/sdk`
2
+
3
+ **This 0.0.0 is a placeholder. There is no API here yet.**
4
+
5
+ The [Teistro SDK](https://github.com/teispace/teistro-sdk) is an open,
6
+ type-safe astrology SDK written in Rust with bindings for every platform:
7
+ the astronomy layer, calendars, charts, panchanga and the rule corpus,
8
+ over a pluggable ephemeris port. It is Apache-2.0 and under active
9
+ development in the open.
10
+
11
+ This version exists only so the name matches the work. The first working
12
+ release will replace it. Until then, read
13
+ [`docs/STATUS.md`](https://github.com/teispace/teistro-sdk/blob/main/docs/STATUS.md),
14
+ which names what is built and what is next.
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "@teistro/sdk",
3
+ "version": "0.0.0",
4
+ "description": "Placeholder. The Teistro SDK: an open, type-safe astrology SDK in Rust with bindings for every platform — astronomy, calendars, charts, panchanga and the rule corpus, over a pluggable ephemeris port.",
5
+ "keywords": ["astrology", "jyotisha", "vedic", "ephemeris", "panchanga"],
6
+ "homepage": "https://github.com/teispace/teistro-sdk",
7
+ "bugs": "https://github.com/teispace/teistro-sdk/issues",
8
+ "repository": { "type": "git", "url": "git+https://github.com/teispace/teistro-sdk.git" },
9
+ "license": "Apache-2.0",
10
+ "files": ["README.md"],
11
+ "publishConfig": { "access": "public" }
12
+ }