market-feed 1.1.1 → 1.2.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/package.json +26 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "market-feed",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Unified TypeScript client for financial market data — wraps Yahoo Finance, Alpha Vantage, Polygon.io, and Finnhub under one consistent interface with caching, fallback, and real-time WebSocket streaming.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"finance",
|
|
@@ -151,17 +151,41 @@
|
|
|
151
151
|
"LICENSE",
|
|
152
152
|
"CHANGELOG.md"
|
|
153
153
|
],
|
|
154
|
+
"scripts": {
|
|
155
|
+
"build": "tsup",
|
|
156
|
+
"dev": "tsup --watch",
|
|
157
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
158
|
+
"lint": "biome check src tests",
|
|
159
|
+
"lint:fix": "biome check --write src tests",
|
|
160
|
+
"format": "biome format --write src tests",
|
|
161
|
+
"test": "vitest run",
|
|
162
|
+
"test:watch": "vitest",
|
|
163
|
+
"test:coverage": "vitest run --coverage",
|
|
164
|
+
"test:integration": "INTEGRATION=true vitest run tests/integration",
|
|
165
|
+
"docs:dev": "vitepress dev docs",
|
|
166
|
+
"docs:build": "vitepress build docs",
|
|
167
|
+
"docs:preview": "vitepress preview docs",
|
|
168
|
+
"prepublishOnly": "pnpm build && pnpm typecheck"
|
|
169
|
+
},
|
|
154
170
|
"devDependencies": {
|
|
155
171
|
"@biomejs/biome": "^1.9.4",
|
|
156
172
|
"@changesets/cli": "^2.27.10",
|
|
173
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
174
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
175
|
+
"@semantic-release/git": "^10.0.1",
|
|
176
|
+
"@semantic-release/github": "^12.0.6",
|
|
177
|
+
"@semantic-release/npm": "^13.1.5",
|
|
178
|
+
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
157
179
|
"@testing-library/react": "^16.3.2",
|
|
158
180
|
"@types/node": "^25.5.0",
|
|
159
181
|
"@types/react": "^18.3.28",
|
|
160
182
|
"@types/react-dom": "^18",
|
|
161
183
|
"@vitest/coverage-v8": "^4.1.0",
|
|
184
|
+
"conventional-changelog-conventionalcommits": "^9.3.0",
|
|
162
185
|
"jsdom": "^28.1.0",
|
|
163
186
|
"react": "^18.3.1",
|
|
164
187
|
"react-dom": "^18",
|
|
188
|
+
"semantic-release": "^25.0.3",
|
|
165
189
|
"tsup": "^8.5.1",
|
|
166
190
|
"tsx": "^4.21.0",
|
|
167
191
|
"typescript": "^5.7.2",
|
|
@@ -175,20 +199,5 @@
|
|
|
175
199
|
"publishConfig": {
|
|
176
200
|
"access": "public",
|
|
177
201
|
"provenance": true
|
|
178
|
-
},
|
|
179
|
-
"scripts": {
|
|
180
|
-
"build": "tsup",
|
|
181
|
-
"dev": "tsup --watch",
|
|
182
|
-
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
183
|
-
"lint": "biome check src tests",
|
|
184
|
-
"lint:fix": "biome check --write src tests",
|
|
185
|
-
"format": "biome format --write src tests",
|
|
186
|
-
"test": "vitest run",
|
|
187
|
-
"test:watch": "vitest",
|
|
188
|
-
"test:coverage": "vitest run --coverage",
|
|
189
|
-
"test:integration": "INTEGRATION=true vitest run tests/integration",
|
|
190
|
-
"docs:dev": "vitepress dev docs",
|
|
191
|
-
"docs:build": "vitepress build docs",
|
|
192
|
-
"docs:preview": "vitepress preview docs"
|
|
193
202
|
}
|
|
194
|
-
}
|
|
203
|
+
}
|