@burdenoff/website-sdk 2026.802.1 → 2026.7203.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/dist/components/pricing.d.mts +1 -91
- package/dist/components/pricing.d.ts +1 -91
- package/dist/components/pricing.js +19 -72
- package/dist/components/pricing.js.map +1 -1
- package/dist/components/pricing.mjs +20 -70
- package/dist/components/pricing.mjs.map +1 -1
- package/dist/content/index.js +7 -190
- package/dist/content/index.js.map +1 -1
- package/dist/content/index.mjs +7 -190
- package/dist/content/index.mjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +38 -302
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +38 -302
- package/dist/index.mjs.map +1 -1
- package/dist/store/index.js +12 -219
- package/dist/store/index.js.map +1 -1
- package/dist/store/index.mjs +12 -219
- package/dist/store/index.mjs.map +1 -1
- package/package.json +3 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@burdenoff/website-sdk",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.7203.0",
|
|
4
4
|
"description": "Shared SDK for Burdenoff product websites - reusable React components, utilities, and configurations",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -66,11 +66,11 @@
|
|
|
66
66
|
"lint:fix": "eslint src --fix",
|
|
67
67
|
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,css,scss,json,md}\"",
|
|
68
68
|
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,css,scss,json,md}\"",
|
|
69
|
-
"type-check": "
|
|
69
|
+
"type-check": "tsc --noEmit",
|
|
70
70
|
"prepublishOnly": "bun run build",
|
|
71
71
|
"test": "vitest",
|
|
72
72
|
"test:coverage": "vitest --coverage",
|
|
73
|
-
"sanity": "
|
|
73
|
+
"sanity": "bun run format:check && bun run lint:sanity && bun run type-check && bun run build"
|
|
74
74
|
},
|
|
75
75
|
"keywords": [
|
|
76
76
|
"burdenoff",
|
|
@@ -123,7 +123,6 @@
|
|
|
123
123
|
"@radix-ui/react-dropdown-menu": "^2.1.20",
|
|
124
124
|
"@radix-ui/react-label": "^2.0.2",
|
|
125
125
|
"@radix-ui/react-slot": "^1.0.2",
|
|
126
|
-
"@testing-library/react": "^16.3.2",
|
|
127
126
|
"@types/node": "^22.10.2",
|
|
128
127
|
"@types/react": "^18.3.12",
|
|
129
128
|
"@types/react-dom": "^18.3.1",
|
|
@@ -140,7 +139,6 @@
|
|
|
140
139
|
"eslint-plugin-react": "^7.37.5",
|
|
141
140
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
142
141
|
"globals": "^16.5.0",
|
|
143
|
-
"jsdom": "^24.0.0",
|
|
144
142
|
"lucide-react": "^0.462.0",
|
|
145
143
|
"prettier": "^3.6.2",
|
|
146
144
|
"react": "^18.3.1",
|