@vulcan-js/forge 0.0.2 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +7 -9
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @vulcan-js/forge
2
2
 
3
- All-in-one package that re-exports every [Vulcan](../../README.md) module — install once, import everything.
3
+ All-in-one package that re-exports every [Vulcan](https://github.com/material-tech/vulcan) module — install once, import everything.
4
4
 
5
5
  ## Installation
6
6
 
@@ -19,10 +19,10 @@ import { backtest, collect, createStrategy, rsi, sma } from '@vulcan-js/forge'
19
19
 
20
20
  | Package | Description |
21
21
  | --- | --- |
22
- | [`@vulcan-js/core`](../core/) | Core types and utilities |
23
- | [`@vulcan-js/indicators`](../indicators/) | Technical analysis indicators |
24
- | [`@vulcan-js/strategies`](../strategies/) | Trading strategies |
25
- | [`@vulcan-js/backtest`](../backtest/) | Backtesting engine |
22
+ | [`@vulcan-js/core`](https://github.com/material-tech/vulcan/tree/main/packages/core) | Core types and utilities |
23
+ | [`@vulcan-js/indicators`](https://github.com/material-tech/vulcan/tree/main/packages/indicators) | Technical analysis indicators |
24
+ | [`@vulcan-js/strategies`](https://github.com/material-tech/vulcan/tree/main/packages/strategies) | Trading strategies |
25
+ | [`@vulcan-js/backtest`](https://github.com/material-tech/vulcan/tree/main/packages/backtest) | Backtesting engine |
26
26
 
27
27
  ## License
28
28
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vulcan-js/forge",
3
3
  "type": "module",
4
- "version": "0.0.2",
4
+ "version": "0.1.0-beta.1",
5
5
  "description": "All-in-one package that re-exports all Vulcan technical analysis modules",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -26,17 +26,15 @@
26
26
  "dist"
27
27
  ],
28
28
  "dependencies": {
29
- "@vulcan-js/backtest": "^0.0.2",
30
- "@vulcan-js/core": "^0.0.2",
31
- "@vulcan-js/indicators": "^0.0.2",
32
- "@vulcan-js/strategies": "^0.0.2"
29
+ "@vulcan-js/backtest": "^0.1.0-beta.1",
30
+ "@vulcan-js/core": "^0.1.0-beta.1",
31
+ "@vulcan-js/indicators": "^0.1.0-beta.1",
32
+ "@vulcan-js/strategies": "^0.1.0-beta.1"
33
33
  },
34
34
  "devDependencies": {
35
- "@types/node": "^25.2.3",
35
+ "@types/node": "^25.3.0",
36
36
  "tsdown": "^0.20.3",
37
37
  "typescript": "^5.9.3"
38
38
  },
39
- "scripts": {
40
- "build": "tsdown"
41
- }
39
+ "scripts": {}
42
40
  }