@agrada_digital/pbm 0.0.56 → 0.0.62
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/index.d.mts +16 -1
- package/dist/index.d.ts +16 -1
- package/dist/index.js +344 -159
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +340 -156
- package/dist/index.mjs.map +1 -1
- package/dist-wc/pbm-wc.js +108 -103
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agrada_digital/pbm",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.62",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -19,6 +19,16 @@
|
|
|
19
19
|
},
|
|
20
20
|
"style": "dist/index.css",
|
|
21
21
|
"description": "A React component library to implement the PBM (Pharmacy Benefit Manager) model.",
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "vite",
|
|
24
|
+
"build": "tsup && vite build --config vite.config.wc.ts",
|
|
25
|
+
"lint": "eslint .",
|
|
26
|
+
"preview": "vite preview",
|
|
27
|
+
"release": "pnpm run build && git add . && git commit -m \"build update\" && git push origin main && pnpm version patch && pnpm publish --access public && git push origin main",
|
|
28
|
+
"test": "jest",
|
|
29
|
+
"storybook": "storybook dev -p 6006",
|
|
30
|
+
"build-storybook": "storybook build"
|
|
31
|
+
},
|
|
22
32
|
"dependencies": {
|
|
23
33
|
"@hookform/resolvers": "^5.1.1",
|
|
24
34
|
"@tailwindcss/postcss": "^4.1.11",
|
|
@@ -70,15 +80,5 @@
|
|
|
70
80
|
"typescript-eslint": "^8.35.1",
|
|
71
81
|
"vite": "^6.3.5",
|
|
72
82
|
"vitest": "^3.2.4"
|
|
73
|
-
},
|
|
74
|
-
"scripts": {
|
|
75
|
-
"dev": "vite",
|
|
76
|
-
"build": "tsup && vite build --config vite.config.wc.ts",
|
|
77
|
-
"lint": "eslint .",
|
|
78
|
-
"preview": "vite preview",
|
|
79
|
-
"release": "pnpm run build && git add . && git commit -m \"build update\" && git push origin main && pnpm version patch && pnpm publish --access public && git push origin main",
|
|
80
|
-
"test": "jest",
|
|
81
|
-
"storybook": "storybook dev -p 6006",
|
|
82
|
-
"build-storybook": "storybook build"
|
|
83
83
|
}
|
|
84
|
-
}
|
|
84
|
+
}
|