@redzone/taunt-logins-ui-react 0.0.11 → 0.0.12

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,10 +1,13 @@
1
1
  {
2
2
  "name": "@redzone/taunt-logins-ui-react",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
7
- "build": "tsc --project tsconfig.lib.json && vite build --config vite.config.lib.ts",
7
+ "libbuild": "tsc --project tsconfig.lib.json && vite build --config vite.config.lib.ts",
8
+ "build": "npm run libbuild && npm run copy:css && npm pack",
9
+ "copy:css": "cp src/lib/styling.css dist/styling.css",
10
+ "pack": "npm pack",
8
11
  "build:web": "tsc && vite build",
9
12
  "prebuild": "npm run clean",
10
13
  "prebuild:web": "npm run clean",
@@ -18,12 +21,6 @@
18
21
  "main": "./dist/taunt-logins-ui-react.umd.js",
19
22
  "module": "./dist/taunt-logins-ui-react.js",
20
23
  "types": "./dist/taunt-logins-ui-react.d.ts",
21
- "exports": {
22
- ".": {
23
- "import": "./dist/taunt-logins-ui-react.js",
24
- "require": "./dist/taunt-logins-ui-react.umd.js"
25
- }
26
- },
27
24
  "peerDependencies": {
28
25
  "react": "^18.2.0",
29
26
  "react-dom": "^18.2.0",
@@ -45,7 +42,6 @@
45
42
  "typescript": "~5.9.3",
46
43
  "typescript-eslint": "^8.45.0",
47
44
  "vite": "^7.1.9",
48
- "vite-plugin-css-injected-by-js": "^3.5.2",
49
45
  "vite-plugin-dts": "^4.5.4",
50
46
  "vite-plugin-ts": "^1.3.2-1"
51
47
  },