rf-touchstone 0.0.1 → 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.
package/package.json CHANGED
@@ -1,21 +1,24 @@
1
1
  {
2
2
  "name": "rf-touchstone",
3
3
  "type": "module",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "description": "A Javascript/TypeScript library for reading, manipulating, and writing Touchstone files (.snp files) used in radio frequency (RF) and microwave engineering.",
6
6
  "main": "dist/Touchstone.cjs.js",
7
7
  "module": "dist/Touchstone.es.js",
8
- "types": "dist/touchstone.d.ts",
8
+ "types": "dist/index.d.ts",
9
9
  "files": [
10
10
  "./dist",
11
+ "./src",
11
12
  "./readme.md",
12
- "./development.md",
13
- "./LICENSE",
13
+ "./LICENSE.md",
14
14
  "./coverage/coverage-badge.svg"
15
15
  ],
16
16
  "license": "MIT",
17
17
  "author": "https://github.com/panz2018",
18
- "repository": "https://github.com/panz2018/RF-Touchstone",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/panz2018/RF-Touchstone.git"
21
+ },
19
22
  "keywords": [
20
23
  "rf",
21
24
  "touchstone",
@@ -31,9 +34,9 @@
31
34
  "matrix",
32
35
  "impedance"
33
36
  ],
34
- "packageManager": "yarn@4.9.2",
37
+ "packageManager": "yarn@4.12.0",
35
38
  "scripts": {
36
- "test": "run-p --print-label lint format test:unit test:coverage build docs:md && run-s docs:build",
39
+ "test": "run-p --print-label lint format test:unit test:coverage build && run-s docs:md docs:build",
37
40
  "lint": "eslint . --fix",
38
41
  "format": "prettier --write .",
39
42
  "test:watch": "vitest",
@@ -46,30 +49,30 @@
46
49
  "docs:preview": "vitepress preview docs"
47
50
  },
48
51
  "dependencies": {
49
- "mathjs": "^14.5.2"
52
+ "mathjs": "15.1.0"
50
53
  },
51
54
  "devDependencies": {
52
- "@eslint/js": "^9.28.0",
53
- "@types/eslint-config-prettier": "^6.11.3",
54
- "@types/node": "^22.15.30",
55
- "@vitest/coverage-v8": "^3.2.2",
56
- "coverage-badges-cli": "^2.1.0",
57
- "eslint": "^9.28.0",
58
- "eslint-config-prettier": "^10.1.5",
59
- "eslint-plugin-prettier": "^5.4.1",
60
- "globals": "^16.2.0",
61
- "happy-dom": "^17.6.3",
62
- "markdown-it-mathjax3": "^4.3.2",
63
- "npm-run-all": "^4.1.5",
64
- "prettier": "^3.5.3",
65
- "rollup-plugin-visualizer": "^6.0.1",
66
- "typedoc": "^0.28.5",
67
- "typedoc-plugin-markdown": "^4.6.4",
68
- "typescript": "^5.8.3",
69
- "typescript-eslint": "^8.33.1",
70
- "vite": "^6.3.5",
71
- "vite-plugin-dts": "^4.5.4",
72
- "vitepress": "^1.6.3",
73
- "vitest": "^3.2.2"
55
+ "@eslint/js": "9.39.2",
56
+ "@types/eslint-config-prettier": "6.11.3",
57
+ "@types/node": "25.0.3",
58
+ "@vitest/coverage-v8": "4.0.16",
59
+ "coverage-badges-cli": "2.2.0",
60
+ "eslint": "9.39.2",
61
+ "eslint-config-prettier": "10.1.8",
62
+ "eslint-plugin-prettier": "5.5.4",
63
+ "globals": "16.5.0",
64
+ "happy-dom": "20.0.11",
65
+ "markdown-it-mathjax3": "5.2.0",
66
+ "npm-run-all": "4.1.5",
67
+ "prettier": "3.7.4",
68
+ "rollup-plugin-visualizer": "6.0.5",
69
+ "typedoc": "0.28.15",
70
+ "typedoc-plugin-markdown": "4.9.0",
71
+ "typescript": "5.9.3",
72
+ "typescript-eslint": "8.50.1",
73
+ "vite": "7.3.0",
74
+ "vite-plugin-dts": "4.5.4",
75
+ "vitepress": "1.6.4",
76
+ "vitest": "4.0.16"
74
77
  }
75
78
  }
package/readme.md CHANGED
@@ -35,6 +35,7 @@ RF-Touchstone currently supports versions 1.0 and 1.1 of the Touchstone specific
35
35
  - Format conversions: RI (Real/Imaginary), MA (Magnitude/Angle), DB (Decibel/Angle)
36
36
  - TypeScript implementation with strong typing
37
37
  - Comprehensive test suite
38
+ - Published on NPM: [rf-touchstone](https://www.npmjs.com/package/rf-touchstone)
38
39
 
39
40
  ## Installation
40
41
 
@@ -75,6 +76,7 @@ For detailed documentation, please visit:
75
76
 
76
77
  - [Project Website](https://panz2018.github.io/RF-Touchstone/)
77
78
  - [DeepWiki Documentation](https://deepwiki.com/panz2018/RF-Touchstone) - Interactive AI documentation that allows you to converse and ask questions about this repository
79
+ - [Changelog](https://github.com/panz2018/RF-Touchstone/releases)
78
80
 
79
81
  ## Development
80
82
 
@@ -82,4 +84,4 @@ For information on setting up a development environment and contributing to the
82
84
 
83
85
  ## License
84
86
 
85
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
87
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE.md) file for details.