@nice2dev/events 0.1.0 → 1.0.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -1
  2. package/package.json +25 -6
package/CHANGELOG.md CHANGED
@@ -1,4 +1,26 @@
1
- # Changelog
1
+ # @nice2dev/events — Changelog
2
+
3
+ ## [0.2.0] — 2026-03-25
4
+
5
+ ### Added (FAZA 7.6)
6
+
7
+ - **EventCreator** — event creation wizard
8
+ - **EventCalendar** — calendar view with RSVP
9
+ - **LiveChat** — real-time event chat
10
+ - **RoundManager** — party round/game management
11
+ - **AttractionPicker** — activity selection with voting
12
+ - **GuestList** — guest management with invitations
13
+ - **RSVPForm** — RSVP with attendance tracking
14
+ - **EventTimeline** — event schedule timeline
15
+ - **SongPicker** — music selection for karaoke
16
+ - **KaraokePicker** — karaoke song picker with queue
17
+ - 10 unit tests + E2E tests
18
+
19
+ ---
20
+
21
+ ## [0.1.0] — 2025-06-01
22
+
23
+ Initial beta — event/party system with chat, rounds, music, attractions, planning.
2
24
 
3
25
  All notable changes to **@nice2dev/events** will be documented in this file.
4
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nice2dev/events",
3
- "version": "0.1.0",
3
+ "version": "1.0.3",
4
4
  "description": "Nice2Dev Events — Party/event system with chat, rounds, music, attractions, planning, and content controls for React",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -14,8 +14,15 @@
14
14
  },
15
15
  "./style.css": "./dist/style.css"
16
16
  },
17
- "files": ["dist", "LICENSE", "CHANGELOG.md", "README.md"],
18
- "sideEffects": ["*.css"],
17
+ "files": [
18
+ "dist",
19
+ "LICENSE",
20
+ "CHANGELOG.md",
21
+ "README.md"
22
+ ],
23
+ "sideEffects": [
24
+ "*.css"
25
+ ],
19
26
  "scripts": {
20
27
  "dev": "vite",
21
28
  "build": "tsc -p tsconfig.build.json && vite build",
@@ -27,8 +34,17 @@
27
34
  "prepublishOnly": "npm run build"
28
35
  },
29
36
  "keywords": [
30
- "react", "events", "party", "chat", "rounds", "music", "karaoke",
31
- "attractions", "planning", "qr", "nicetodev"
37
+ "react",
38
+ "events",
39
+ "party",
40
+ "chat",
41
+ "rounds",
42
+ "music",
43
+ "karaoke",
44
+ "attractions",
45
+ "planning",
46
+ "qr",
47
+ "nicetodev"
32
48
  ],
33
49
  "author": "NiceToDev <contact@nicetodev.com>",
34
50
  "license": "MIT",
@@ -46,6 +62,8 @@
46
62
  "react-dom": ">=17.0.0"
47
63
  },
48
64
  "devDependencies": {
65
+ "@testing-library/jest-dom": "^6.9.1",
66
+ "@testing-library/react": "^14.0.0",
49
67
  "@types/react": "^18.2.0",
50
68
  "@types/react-dom": "^18.2.0",
51
69
  "@vitejs/plugin-react": "^4.2.0",
@@ -53,6 +71,7 @@
53
71
  "react-dom": "^18.2.0",
54
72
  "typescript": "^5.3.0",
55
73
  "vite": "^6.2.0",
56
- "vite-plugin-dts": "^4.5.0"
74
+ "vite-plugin-dts": "^4.5.0",
75
+ "vitest": "^4.1.0"
57
76
  }
58
77
  }