@turnstileai/sdk 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/README.md ADDED
@@ -0,0 +1,34 @@
1
+ \# @turnstileai/sdk
2
+
3
+
4
+
5
+ Official TypeScript SDK for TurnstileAI.
6
+
7
+
8
+
9
+ \## Install
10
+
11
+
12
+
13
+ ```bash
14
+
15
+ npm install @turnstileai/sdk
16
+
17
+ ```
18
+
19
+
20
+
21
+ \## Usage
22
+
23
+
24
+
25
+ ```ts
26
+
27
+ import { hello } from "@turnstileai/sdk";
28
+
29
+
30
+
31
+ console.log(hello());
32
+
33
+ ```
34
+
@@ -0,0 +1 @@
1
+ export declare const hello: () => string;
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.hello = void 0;
4
+ const hello = () => "hello from TurnstileAI";
5
+ exports.hello = hello;
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@turnstileai/sdk",
3
+ "version": "0.1.0",
4
+ "description": "Official TypeScript SDK for TurnstileAI",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist",
9
+ "README.md"
10
+ ],
11
+ "scripts": {
12
+ "build": "tsc",
13
+ "prepublishOnly": "npm run build"
14
+ },
15
+ "keywords": [
16
+ "ai",
17
+ "sdk",
18
+ "typescript",
19
+ "llm",
20
+ "turnstileai"
21
+ ],
22
+ "license": "MIT",
23
+ "devDependencies": {
24
+ "typescript": "^6.0.3"
25
+ }
26
+ }