@terminals-tech/sdk 1.0.0-rc.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/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@terminals-tech/sdk",
3
+ "version": "1.0.0-rc.1",
4
+ "description": "Private Terminals OS SDK facade for internal packaging and dry-run verification. Patent Pending.",
5
+ "license": "BUSL-1.1",
6
+ "author": "Intuition Labs LLC",
7
+ "notice": "Terminals OS architecture is Patent Pending. © 2026 Intuition Labs LLC.",
8
+ "homepage": "https://terminals.tech",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/wheattoast11/terminals-landing-new.git",
12
+ "directory": "packages/sdk"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/wheattoast11/terminals-landing-new/issues"
16
+ },
17
+ "type": "module",
18
+ "main": "./dist/index.cjs",
19
+ "module": "./dist/index.js",
20
+ "types": "./dist/index.d.ts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.js",
25
+ "require": "./dist/index.cjs"
26
+ }
27
+ },
28
+ "files": [
29
+ "dist/",
30
+ "README.md",
31
+ "LICENSE"
32
+ ],
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "scripts": {
37
+ "build": "tsup src/index.ts --format esm,cjs --dts --out-dir dist",
38
+ "clean": "rm -rf dist",
39
+ "typecheck": "tsc --noEmit -p tsconfig.json",
40
+ "pack:dry-run": "npm run build && npm pack --json --dry-run --ignore-scripts",
41
+ "publish:check": "npm run clean && npm run build && node ../../scripts/verify-sdk-package.mjs",
42
+ "prepack": "npm run build"
43
+ },
44
+ "peerDependencies": {
45
+ "typescript": ">=5.0.0"
46
+ }
47
+ }