@softruck/api-contracts 0.1.1-beta.3 → 1.0.0
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/README.md +2 -0
- package/package.json +17 -14
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softruck/api-contracts",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Shared API contracts, schemas, and client factories for Softruck front-end applications.",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"packageManager": "pnpm@11.4.0",
|
|
6
7
|
"repository": {
|
|
7
8
|
"type": "git",
|
|
8
9
|
"url": "git+ssh://git@bitbucket.org/softrucktechteam/api-contracts.git"
|
|
@@ -25,6 +26,20 @@
|
|
|
25
26
|
"default": "./dist/*/index.js"
|
|
26
27
|
}
|
|
27
28
|
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "pnpm clean && tsc && node scripts/fix-esm-imports.mjs",
|
|
31
|
+
"clean": "rm -rf dist",
|
|
32
|
+
"knip": "knip",
|
|
33
|
+
"knip:production": "knip --production",
|
|
34
|
+
"lint": "eslint .",
|
|
35
|
+
"lint:fix": "eslint . --fix",
|
|
36
|
+
"prepare": "husky",
|
|
37
|
+
"prepublishOnly": "pnpm build",
|
|
38
|
+
"release": "HUSKY=0 semantic-release",
|
|
39
|
+
"release:dry-run": "HUSKY=0 semantic-release --dry-run",
|
|
40
|
+
"test": "vitest run",
|
|
41
|
+
"typecheck": "tsc --noEmit"
|
|
42
|
+
},
|
|
28
43
|
"dependencies": {
|
|
29
44
|
"zod": "^4.4.3"
|
|
30
45
|
},
|
|
@@ -43,17 +58,5 @@
|
|
|
43
58
|
"typescript": "~6.0.2",
|
|
44
59
|
"typescript-eslint": "^8.60.1",
|
|
45
60
|
"vitest": "^4.1.7"
|
|
46
|
-
},
|
|
47
|
-
"scripts": {
|
|
48
|
-
"build": "pnpm clean && tsc && node scripts/fix-esm-imports.mjs",
|
|
49
|
-
"clean": "rm -rf dist",
|
|
50
|
-
"knip": "knip",
|
|
51
|
-
"knip:production": "knip --production",
|
|
52
|
-
"lint": "eslint .",
|
|
53
|
-
"lint:fix": "eslint . --fix",
|
|
54
|
-
"release": "HUSKY=0 semantic-release",
|
|
55
|
-
"release:dry-run": "HUSKY=0 semantic-release --dry-run",
|
|
56
|
-
"test": "vitest run",
|
|
57
|
-
"typecheck": "tsc --noEmit"
|
|
58
61
|
}
|
|
59
|
-
}
|
|
62
|
+
}
|