@technomoron/apicore-client 1.0.0-beta.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,66 @@
1
+ {
2
+ "name": "@technomoron/apicore-client",
3
+ "version": "1.0.0-beta.1",
4
+ "description": "HTTP client for apicore-server APIs",
5
+ "type": "module",
6
+ "main": "./dist/cjs/index.js",
7
+ "module": "./dist/esm/index.js",
8
+ "types": "./dist/esm/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/esm/index.d.ts",
12
+ "import": "./dist/esm/index.js",
13
+ "require": "./dist/cjs/index.js"
14
+ }
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/technomoron/apicore.git",
19
+ "directory": "packages/client"
20
+ },
21
+ "author": "Bjørn Erik Jacobsen",
22
+ "license": "MIT",
23
+ "copyright": "Copyright (c) 2025 Bjørn Erik Jacobsen",
24
+ "bugs": {
25
+ "url": "https://github.com/technomoron/apicore/issues"
26
+ },
27
+ "homepage": "https://github.com/technomoron/apicore/tree/main/packages/client#readme",
28
+ "scripts": {
29
+ "build:cjs": "tsc --project tsconfig/tsconfig.cjs.json",
30
+ "build:esm": "tsc --project tsconfig/tsconfig.esm.json",
31
+ "build": "run-s build:cjs build:esm",
32
+ "test": "vitest run",
33
+ "test:unit": "vitest run tests/unit",
34
+ "test:integration": "vitest run tests/integration",
35
+ "test:watch": "vitest --watch",
36
+ "prepublishOnly": "run-s build:cjs build:esm",
37
+ "lint": "eslint --no-error-on-unmatched-pattern --ext .js,.cjs,.mjs,.ts,.mts,.tsx ./",
38
+ "lintfix": "eslint --fix --no-error-on-unmatched-pattern --ext .js,.cjs,.mjs,.ts,.mts,.tsx ./",
39
+ "pretty": "prettier --write \"**/*.{js,jsx,cjs,mjs,ts,tsx,mts,json,md}\"",
40
+ "format": "run-s lintfix pretty",
41
+ "cleanbuild": "rm -rf ./dist/ && run-s format build",
42
+ "release:check": "bash ./scripts/release-check.sh",
43
+ "release": "bash ./scripts/release.sh"
44
+ },
45
+ "devDependencies": {
46
+ "@technomoron/apicore-server": "workspace:*",
47
+ "@typescript-eslint/eslint-plugin": "^8.54.0",
48
+ "@typescript-eslint/parser": "^8.54.0",
49
+ "eslint": "^9.39.2",
50
+ "eslint-config-prettier": "^10.1.8",
51
+ "eslint-plugin-import": "^2.32.0",
52
+ "npm-run-all": "^4.1.5",
53
+ "prettier": "^3.8.1",
54
+ "typescript": "^5.9.3",
55
+ "vitest": "^4.0.18"
56
+ },
57
+ "engines": {
58
+ "node": ">=22"
59
+ },
60
+ "files": [
61
+ "dist/",
62
+ "package.json",
63
+ "LICENSE",
64
+ "README.md"
65
+ ]
66
+ }