spectraview 1.8.0 → 1.8.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/CHANGELOG.md +205 -0
- package/README.md +190 -34
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +14 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spectraview",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"description": "Interactive React component for vibrational spectroscopy (IR, Raman, NIR)",
|
|
5
5
|
"author": "Tubhyam Karthikeyan <takarthikeyan25@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
],
|
|
59
59
|
"sideEffects": false,
|
|
60
60
|
"peerDependencies": {
|
|
61
|
+
"jcampconverter": ">=5.0.0",
|
|
61
62
|
"react": "^18.0.0 || ^19.0.0",
|
|
62
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
63
|
-
"jcampconverter": ">=5.0.0"
|
|
63
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
64
64
|
},
|
|
65
65
|
"peerDependenciesMeta": {
|
|
66
66
|
"jcampconverter": {
|
|
@@ -76,6 +76,10 @@
|
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@changesets/cli": "^2.27.0",
|
|
79
|
+
"@eslint/js": "9.39.3",
|
|
80
|
+
"@storybook/addon-a11y": "^10.2.12",
|
|
81
|
+
"@storybook/addon-docs": "^10.2.12",
|
|
82
|
+
"@storybook/react-vite": "^10.2.12",
|
|
79
83
|
"@testing-library/jest-dom": "^6.6.0",
|
|
80
84
|
"@testing-library/react": "^16.1.0",
|
|
81
85
|
"@testing-library/user-event": "^14.5.0",
|
|
@@ -87,16 +91,17 @@
|
|
|
87
91
|
"@types/react": "^19.0.0",
|
|
88
92
|
"@types/react-dom": "^19.0.0",
|
|
89
93
|
"@vitest/coverage-v8": "^2.1.0",
|
|
94
|
+
"eslint": "9.39.3",
|
|
95
|
+
"eslint-plugin-react": "7.37.5",
|
|
96
|
+
"eslint-plugin-react-hooks": "5.2.0",
|
|
90
97
|
"jsdom": "^25.0.0",
|
|
91
98
|
"react": "^19.0.0",
|
|
92
99
|
"react-dom": "^19.0.0",
|
|
100
|
+
"storybook": "^10.2.12",
|
|
93
101
|
"tsup": "^8.3.0",
|
|
94
102
|
"typescript": "^5.7.0",
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"@storybook/react-vite": "^10.2.12",
|
|
98
|
-
"@storybook/addon-a11y": "^10.2.12",
|
|
99
|
-
"@storybook/addon-docs": "^10.2.12"
|
|
103
|
+
"typescript-eslint": "8.56.1",
|
|
104
|
+
"vitest": "^2.1.0"
|
|
100
105
|
},
|
|
101
106
|
"scripts": {
|
|
102
107
|
"build": "tsup",
|
|
@@ -104,7 +109,7 @@
|
|
|
104
109
|
"test": "vitest",
|
|
105
110
|
"test:run": "vitest run",
|
|
106
111
|
"test:coverage": "vitest run --coverage",
|
|
107
|
-
"lint": "
|
|
112
|
+
"lint": "eslint src/",
|
|
108
113
|
"typecheck": "tsc --noEmit",
|
|
109
114
|
"prepublishOnly": "npm run test:run && npm run build",
|
|
110
115
|
"changeset": "changeset",
|