@matochmat/api-client 1.3.2 → 1.3.3
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 +3 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matochmat/api-client",
|
|
3
3
|
"description": "API types and helper functionality for the Mat och Mat API.",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.3",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -42,12 +42,13 @@
|
|
|
42
42
|
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
|
|
43
43
|
"rollup": "^4.24.4",
|
|
44
44
|
"standard-version": "^9.5.0",
|
|
45
|
+
"tsc-alias": "^1.8.10",
|
|
45
46
|
"tsx": "^4.19.1",
|
|
46
47
|
"typedoc": "^0.26.8",
|
|
47
48
|
"typescript": "^5.6.2"
|
|
48
49
|
},
|
|
49
50
|
"scripts": {
|
|
50
|
-
"build": "tsx scripts/generateMainIndexFile.ts && rollup -c",
|
|
51
|
+
"build": "tsx scripts/generateMainIndexFile.ts && rollup -c && tsc-alias -p ./tsconfig.json",
|
|
51
52
|
"docs:generate": "typedoc 2> /dev/null && git add docs && git commit --no-verify -m 'docs: Autogenerated documentation'",
|
|
52
53
|
"lint": "eslint ./src --ext .ts",
|
|
53
54
|
"release": "( npm whoami || npm login ) && git checkout main && git merge develop --no-ff -m \"chore: Merge branch 'develop' into 'main'\" && npm run build && git add dist src && git commit --no-verify -m 'chore: Built dist files and types'; npm run docs:generate; standard-version --no-verify && git push origin main develop --tags && npm publish --access public && npm run update-next-tag && git checkout develop && git merge main --ff-only",
|