@norbix.ai/ts 1.0.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,112 @@
1
+ {
2
+ "name": "@norbix.ai/ts",
3
+ "version": "1.0.1",
4
+ "description": "Official TypeScript SDK for Norbix — one client for both API and Hub. Works in Node and the browser.",
5
+ "author": "UAB Isidos",
6
+ "license": "MIT",
7
+ "homepage": "https://norbix.dev",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/norbix-code/sdk-ts.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/norbix-code/sdk-ts/issues"
14
+ },
15
+ "keywords": [
16
+ "norbix",
17
+ "baas",
18
+ "backend",
19
+ "sdk",
20
+ "typescript",
21
+ "database",
22
+ "files",
23
+ "push",
24
+ "emails",
25
+ "membership",
26
+ "ai"
27
+ ],
28
+ "type": "module",
29
+ "main": "./dist/index.cjs",
30
+ "module": "./dist/index.js",
31
+ "types": "./dist/index.d.ts",
32
+ "exports": {
33
+ ".": {
34
+ "types": "./dist/index.d.ts",
35
+ "import": "./dist/index.js",
36
+ "require": "./dist/index.cjs"
37
+ },
38
+ "./api": {
39
+ "types": "./dist/api/index.d.ts",
40
+ "import": "./dist/api/index.js",
41
+ "require": "./dist/api/index.cjs"
42
+ },
43
+ "./hub": {
44
+ "types": "./dist/hub/index.d.ts",
45
+ "import": "./dist/hub/index.js",
46
+ "require": "./dist/hub/index.cjs"
47
+ },
48
+ "./types/api": {
49
+ "types": "./dist/types/api2.dtos.d.ts",
50
+ "import": "./dist/types/api2.dtos.js",
51
+ "require": "./dist/types/api2.dtos.cjs"
52
+ },
53
+ "./types/hub": {
54
+ "types": "./dist/types/hub2.dtos.d.ts",
55
+ "import": "./dist/types/hub2.dtos.js",
56
+ "require": "./dist/types/hub2.dtos.cjs"
57
+ }
58
+ },
59
+ "files": [
60
+ "dist",
61
+ "README.md",
62
+ "LICENSE"
63
+ ],
64
+ "engines": {
65
+ "node": ">=18"
66
+ },
67
+ "sideEffects": false,
68
+ "scripts": {
69
+ "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
70
+ "build": "npm run clean && tsup",
71
+ "typecheck": "tsc --noEmit",
72
+ "lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
73
+ "lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix",
74
+ "format": "prettier --write \"**/*.{ts,js,json,md,yml,yaml}\"",
75
+ "format:check": "prettier --check \"**/*.{ts,js,json,md,yml,yaml}\"",
76
+ "test": "vitest run",
77
+ "test:watch": "vitest",
78
+ "test:coverage": "vitest run --coverage",
79
+ "audit": "npm audit --omit=dev --audit-level=high && npm audit signatures",
80
+ "release:dry": "semantic-release --dry-run",
81
+ "prepare": "husky || true",
82
+ "prepublishOnly": "npm run build"
83
+ },
84
+ "devDependencies": {
85
+ "@commitlint/cli": "^19.5.0",
86
+ "@commitlint/config-conventional": "^19.5.0",
87
+ "@semantic-release/changelog": "^6.0.3",
88
+ "@semantic-release/commit-analyzer": "^13.0.0",
89
+ "@semantic-release/git": "^10.0.1",
90
+ "@semantic-release/github": "^11.0.0",
91
+ "@semantic-release/npm": "^12.0.1",
92
+ "@semantic-release/release-notes-generator": "^14.0.1",
93
+ "@types/node": "^22.7.0",
94
+ "@typescript-eslint/eslint-plugin": "^8.10.0",
95
+ "@typescript-eslint/parser": "^8.10.0",
96
+ "@vitest/coverage-v8": "^2.1.3",
97
+ "eslint": "^9.13.0",
98
+ "eslint-config-prettier": "^9.1.0",
99
+ "eslint-plugin-import": "^2.31.0",
100
+ "eslint-plugin-prettier": "^5.2.1",
101
+ "husky": "^9.1.6",
102
+ "prettier": "^3.3.3",
103
+ "semantic-release": "^24.1.2",
104
+ "tsup": "^8.3.0",
105
+ "typescript": "^5.6.3",
106
+ "vitest": "^2.1.3"
107
+ },
108
+ "publishConfig": {
109
+ "access": "public",
110
+ "provenance": true
111
+ }
112
+ }