@campfire-interactive/ui 0.1.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 ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@campfire-interactive/ui",
3
+ "version": "0.1.0",
4
+ "_notReady": "NOT READY FOR APP ADOPTION — see docs/plans/2026-09-09-ui-package-and-showcase.md. private:true blocks npm publish until the components are vetted.",
5
+ "description": "UNVETTED, DO NOT ADOPT YET — Shared UI primitives for the Campfire Suite — Radix behaviour, plain CSS styled entirely from the design tokens, no Tailwind required",
6
+ "type": "module",
7
+ "main": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "prepublishOnly": "npm run build",
21
+ "dev": "tsup --watch",
22
+ "test": "vitest run",
23
+ "typecheck": "tsc --noEmit"
24
+ },
25
+ "peerDependencies": {
26
+ "react": "^18.0.0 || ^19.0.0",
27
+ "react-dom": "^18.0.0 || ^19.0.0"
28
+ },
29
+ "dependencies": {
30
+ "@campfire-interactive/design-tokens": "*",
31
+ "@radix-ui/react-accordion": "^1.2.12",
32
+ "@radix-ui/react-checkbox": "^1.3.3",
33
+ "@radix-ui/react-dialog": "^1.1.15",
34
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
35
+ "@radix-ui/react-popover": "^1.1.15",
36
+ "@radix-ui/react-select": "^2.2.6",
37
+ "@radix-ui/react-slider": "^1.3.6",
38
+ "@radix-ui/react-switch": "^1.2.6",
39
+ "@radix-ui/react-tabs": "^1.1.13",
40
+ "@radix-ui/react-toggle-group": "^1.1.11",
41
+ "@radix-ui/react-tooltip": "^1.2.8",
42
+ "lucide-react": "^0.487.0"
43
+ },
44
+ "devDependencies": {
45
+ "@types/react": "^19.0.0",
46
+ "@types/react-dom": "^19.0.0",
47
+ "react": "^19.0.0",
48
+ "react-dom": "^19.0.0",
49
+ "tsup": "^8.0.0",
50
+ "typescript": "^5.3.3"
51
+ },
52
+ "publishConfig": {
53
+ "registry": "https://registry.npmjs.org",
54
+ "access": "public"
55
+ }
56
+ }