@david-richard/notify-ds 1.0.0 → 1.0.1

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 (1) hide show
  1. package/package.json +38 -33
package/package.json CHANGED
@@ -1,34 +1,41 @@
1
1
  {
2
2
  "name": "@david-richard/notify-ds",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Qu Notify design system — tokens, components, and brand assets for the Qu Notify restaurant analytics app.",
5
- "keywords": ["design-system", "qu", "notify", "react", "tailwind", "tokens"],
5
+ "keywords": [
6
+ "design-system",
7
+ "qu",
8
+ "notify",
9
+ "react",
10
+ "tailwind",
11
+ "tokens"
12
+ ],
6
13
  "license": "UNLICENSED",
7
14
  "private": false,
8
-
9
- "main": "./dist/index.js",
10
- "module": "./dist/index.mjs",
11
- "types": "./dist/index.d.ts",
12
-
15
+ "sideEffects": [
16
+ "**/*.css"
17
+ ],
18
+ "main": "./dist/index.js",
19
+ "module": "./dist/index.mjs",
20
+ "types": "./dist/index.d.ts",
13
21
  "exports": {
14
22
  ".": {
15
- "types": "./dist/index.d.ts",
16
- "import": "./dist/index.mjs",
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.mjs",
17
25
  "require": "./dist/index.js"
18
26
  },
19
27
  "./components": {
20
- "types": "./dist/index.d.ts",
21
- "import": "./dist/index.mjs",
28
+ "types": "./dist/index.d.ts",
29
+ "import": "./dist/index.mjs",
22
30
  "require": "./dist/index.js"
23
31
  },
24
- "./tokens": "./tokens.json",
25
- "./tailwind": "./tailwind.config.js",
26
- "./tokens.css": "./tokens.css",
32
+ "./tokens": "./tokens.json",
33
+ "./tailwind": "./tailwind.config.js",
34
+ "./tokens.css": "./tokens.css",
27
35
  "./assets/icons/*": "./assets/icons/*",
28
- "./assets/*": "./assets/*",
29
- "./fonts/*": "./fonts/*"
36
+ "./assets/*": "./assets/*",
37
+ "./fonts/*": "./fonts/*"
30
38
  },
31
-
32
39
  "files": [
33
40
  "dist/",
34
41
  "assets/",
@@ -39,37 +46,35 @@
39
46
  "constraints.md",
40
47
  "screen-anatomy.md"
41
48
  ],
42
-
43
49
  "scripts": {
44
- "build": "tsup",
45
- "typecheck": "tsc --noEmit",
50
+ "build": "tsup",
51
+ "typecheck": "tsc --noEmit",
46
52
  "prepublishOnly": "npm run build"
47
53
  },
48
-
49
54
  "dependencies": {
50
- "@radix-ui/react-slot": "^1.2.4",
55
+ "@radix-ui/react-slot": "^1.2.4",
51
56
  "class-variance-authority": "^0.7.1",
52
- "clsx": "^2.1.1",
53
- "tailwind-merge": "^2.6.1"
57
+ "clsx": "^2.1.1",
58
+ "tailwind-merge": "^2.6.1"
54
59
  },
55
-
56
60
  "peerDependencies": {
57
- "react": ">=18.0.0",
61
+ "react": ">=18.0.0",
58
62
  "react-dom": ">=18.0.0"
59
63
  },
60
-
61
64
  "peerDependenciesMeta": {
62
- "react": { "optional": false },
63
- "react-dom": { "optional": false }
65
+ "react": {
66
+ "optional": false
67
+ },
68
+ "react-dom": {
69
+ "optional": false
70
+ }
64
71
  },
65
-
66
72
  "devDependencies": {
67
- "tsup": "^8.5.1",
73
+ "tsup": "^8.5.1",
68
74
  "typescript": "^5.0.0"
69
75
  },
70
-
71
76
  "repository": {
72
77
  "type": "git",
73
- "url": "https://github.com/arpdale/qu-design-system.git"
78
+ "url": "https://github.com/arpdale/qu-design-system.git"
74
79
  }
75
80
  }