@opensecret/react 1.2.0 → 1.3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opensecret/react",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "files": [
@@ -21,7 +21,12 @@
21
21
  "build": "tsc -p tsconfig.build.json && npx vite build",
22
22
  "pack": "bun run build && bun pm pack",
23
23
  "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
24
- "format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\""
24
+ "format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
25
+ "docs:dev": "cd website && bun run start",
26
+ "docs:build": "cd website && bun run build",
27
+ "docs:serve": "cd website && bun run serve",
28
+ "docs:clear": "cd website && bun run clear",
29
+ "docs:deploy": "cd website && bun run deploy"
25
30
  },
26
31
  "peerDependencies": {
27
32
  "react": "^18.0.0 || ^19.0.0",