@vulcan-js/forge 0.0.0 → 0.0.2

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 +29 -0
  2. package/package.json +19 -5
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # @vulcan-js/forge
2
+
3
+ All-in-one package that re-exports every [Vulcan](../../README.md) module — install once, import everything.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pnpm add @vulcan-js/forge
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```ts
14
+ // Everything available from a single import
15
+ import { backtest, collect, createStrategy, rsi, sma } from '@vulcan-js/forge'
16
+ ```
17
+
18
+ ## Included Packages
19
+
20
+ | Package | Description |
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 |
26
+
27
+ ## License
28
+
29
+ MIT
package/package.json CHANGED
@@ -1,8 +1,22 @@
1
1
  {
2
2
  "name": "@vulcan-js/forge",
3
3
  "type": "module",
4
- "version": "0.0.0",
4
+ "version": "0.0.2",
5
+ "description": "All-in-one package that re-exports all Vulcan technical analysis modules",
5
6
  "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/material-tech/vulcan",
10
+ "directory": "packages/forge"
11
+ },
12
+ "keywords": [
13
+ "technical-analysis",
14
+ "indicators",
15
+ "trading",
16
+ "backtesting",
17
+ "strategy",
18
+ "vulcan"
19
+ ],
6
20
  "exports": {
7
21
  ".": "./dist/index.js",
8
22
  "./package.json": "./package.json"
@@ -12,10 +26,10 @@
12
26
  "dist"
13
27
  ],
14
28
  "dependencies": {
15
- "@vulcan-js/core": "^0.0.0",
16
- "@vulcan-js/strategies": "^0.0.0",
17
- "@vulcan-js/indicators": "^0.0.0",
18
- "@vulcan-js/backtest": "^0.0.0"
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"
19
33
  },
20
34
  "devDependencies": {
21
35
  "@types/node": "^25.2.3",