bios-sdk 0.1.0-dev.1

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/dist/types.js ADDED
@@ -0,0 +1,4 @@
1
+ // ============================================================================
2
+ // BIOS SDK — Type Definitions
3
+ // ============================================================================
4
+ export {};
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "bios-sdk",
3
+ "version": "0.1.0-dev.1",
4
+ "description": "Official TypeScript SDK for the BIOS training and deployment platform API",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist/**/*.js",
16
+ "dist/**/*.d.ts",
17
+ "!dist/**/*.map",
18
+ "!dist/**/*.d.ts.map",
19
+ "README.md"
20
+ ],
21
+ "scripts": {
22
+ "build": "tsc",
23
+ "test": "npm run build && node --test test/contracts.test.mjs",
24
+ "clean": "rm -rf dist",
25
+ "prepublishOnly": "npm run clean && npm run build"
26
+ },
27
+ "keywords": [
28
+ "bios-sdk",
29
+ "bios",
30
+ "fine-tuning",
31
+ "deployment",
32
+ "fine-tuning",
33
+ "inference",
34
+ "llm",
35
+ "machine-learning",
36
+ "sdk",
37
+ "usbios"
38
+ ],
39
+ "author": "BIOS <bios@us.inc>",
40
+ "homepage": "https://usbios.ai",
41
+ "license": "MIT",
42
+ "engines": {
43
+ "node": ">=18.0.0"
44
+ },
45
+ "devDependencies": {
46
+ "@types/node": "^26.0.1",
47
+ "typescript": "^5.5.0"
48
+ }
49
+ }