@zeniai/client-epic-state 5.0.66-betaJK2 → 5.0.66
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/lib/entity/monthEndCloseChecks/monthEndCloseChecksPayload.d.ts +0 -2
- package/lib/entity/monthEndCloseChecks/monthEndCloseChecksPayload.js +0 -2
- package/lib/entity/monthEndCloseChecks/monthEndCloseChecksState.d.ts +0 -2
- package/lib/esm/entity/monthEndCloseChecks/monthEndCloseChecksPayload.js +0 -2
- package/lib/tsconfig.typecheck.tsbuildinfo +1 -0
- package/package.json +57 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeniai/client-epic-state",
|
|
3
|
-
"version": "5.0.66
|
|
3
|
+
"version": "5.0.66",
|
|
4
4
|
"description": "Shared module between Web & Mobile containing required abstractions for state management, async network communication. ",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/esm/index.js",
|
|
@@ -33,6 +33,34 @@
|
|
|
33
33
|
"require": "./lib/view/*.js"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"clean": "rimraf lib",
|
|
38
|
+
"test:typecheck": "echo 'Typechecking test files...' && NODE_OPTIONS=--max-old-space-size=4096 time tsc -p tsconfig.typecheck.json",
|
|
39
|
+
"test": "pnpm test:typecheck && vitest run --typecheck",
|
|
40
|
+
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
|
|
41
|
+
"find-dead-code": "ts-prune | grep -v '(used in module)'",
|
|
42
|
+
"find-unused-exports": "ts-unused-exports ./tsconfig.json",
|
|
43
|
+
"circular-dependency": "npx madge --circular --extensions ts ./src",
|
|
44
|
+
"build": "concurrently --kill-others-on-fail --handle-input \"echo 'Running ESLint...' && eslint . --ext .js,.jsx,.ts,.tsx\" \"echo 'TypeScript build in progress...' && time tsc && echo 'ESM build...' && tsc -p tsconfig.esm.json\" \"echo 'Running tests and typecheck...' && pnpm test\" && rimraf \"lib/**/__mocks__\" \"lib/**/__testHelpers__\"",
|
|
45
|
+
"only-build": "eslint . --ext .js,.jsx,.ts,.tsx && time tsc && tsc -p tsconfig.esm.json && rimraf \"lib/**/__mocks__\" \"lib/**/__testHelpers__\"",
|
|
46
|
+
"only-build-dev": "eslint . --ext .js,.jsx,.ts,.tsx && time tsc -p tsconfig.dev.json && tsc -p tsconfig.esm.dev.json && rimraf \"lib/**/__mocks__\" \"lib/**/__testHelpers__\"",
|
|
47
|
+
"format": "prettier --write --ignore-unknown \"src/**/*\" && pnpm lint",
|
|
48
|
+
"format-watch": "(git diff --name-only --diff-filter=ACM && git ls-files --others --exclude-standard) | grep -E '\\.(ts|tsx)$' | xargs prettier --write",
|
|
49
|
+
"check-version": "node ./scripts/check_version.js",
|
|
50
|
+
"prepublishOnly": "chmod +x ./scripts/branch_validation.sh && ./scripts/branch_validation.sh && pnpm update-slack-group-topic && pnpm run check-version && pnpm clean && pnpm build",
|
|
51
|
+
"version": "git add -A src",
|
|
52
|
+
"postversion": "git push && git push --tags",
|
|
53
|
+
"check-dependencies": "node ./scripts/check_dependencies.js",
|
|
54
|
+
"clean-overrides": "node ./scripts/clean_overrides.js",
|
|
55
|
+
"create-release-branch": "chmod +x ./scripts/create_release_branch.sh && ./scripts/create_release_branch.sh",
|
|
56
|
+
"bump-update-web-app-cockpit-beta": "chmod +x ./scripts/bump_and_update_web_app_ui_beta.sh && ./scripts/bump_and_update_web_app_ui_beta.sh",
|
|
57
|
+
"send-release-notes": "chmod +x ./scripts/send_release_notes.sh && ./scripts/send_release_notes.sh",
|
|
58
|
+
"update-slack-group-topic": "chmod +x ./scripts/update-slack-group-topic.sh && ./scripts/update-slack-group-topic.sh",
|
|
59
|
+
"build-beta-and-copy": "chmod +x ./scripts/build_and_copy.sh && ./scripts/build_and_copy.sh",
|
|
60
|
+
"pr-approvals-update": "chmod +x ./scripts/pr_approvals.sh && ./scripts/pr_approvals.sh",
|
|
61
|
+
"raise-pr-automation": "chmod +x ./scripts/raise_pr_automation.sh && ./scripts/raise_pr_automation.sh",
|
|
62
|
+
"test:file": "scripts/test-file.sh"
|
|
63
|
+
},
|
|
36
64
|
"files": [
|
|
37
65
|
"lib/**/*"
|
|
38
66
|
],
|
|
@@ -103,31 +131,32 @@
|
|
|
103
131
|
"dayjs": "^1.10.7",
|
|
104
132
|
"url-parse": "^1.5.10"
|
|
105
133
|
},
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
134
|
+
"pnpm": {
|
|
135
|
+
"overrides": {
|
|
136
|
+
"@babel/helpers": ">=7.26.10",
|
|
137
|
+
"@babel/runtime": ">=7.26.10",
|
|
138
|
+
"@babel/traverse": ">=7.23.2",
|
|
139
|
+
"@eslint/eslintrc>ajv": ">=6.14.0 <7",
|
|
140
|
+
"@eslint/plugin-kit": ">=0.3.4",
|
|
141
|
+
"@modelcontextprotocol/sdk": ">=1.25.2",
|
|
142
|
+
"ajv": ">=8.18.0",
|
|
143
|
+
"body-parser": ">=2.2.1",
|
|
144
|
+
"brace-expansion": ">=5.0.5",
|
|
145
|
+
"cross-spawn": ">=7.0.5",
|
|
146
|
+
"eslint>ajv": ">=6.14.0 <7",
|
|
147
|
+
"flatted": ">=3.4.2",
|
|
148
|
+
"glob": ">=11.1.0",
|
|
149
|
+
"hono": ">=4.11.4",
|
|
150
|
+
"immutable": ">=4.3.8 <5",
|
|
151
|
+
"js-yaml": ">=4.1.1",
|
|
152
|
+
"minimatch": ">=10.2.3",
|
|
153
|
+
"picomatch": ">=4.0.4",
|
|
154
|
+
"postcss": ">=8.5.12",
|
|
155
|
+
"qs": "^6.14.1",
|
|
156
|
+
"rollup": ">=4.59.0",
|
|
157
|
+
"tough-cookie": "=4.1.3",
|
|
158
|
+
"vite": ">=7.3.2 <8",
|
|
159
|
+
"yaml": ">=1.10.3"
|
|
160
|
+
}
|
|
132
161
|
}
|
|
133
|
-
}
|
|
162
|
+
}
|