@jeromefitz/design-system 4.1.1 → 4.1.2

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 +24 -31
package/package.json CHANGED
@@ -1,46 +1,44 @@
1
1
  {
2
+ "private": false,
3
+ "license": "MIT",
4
+ "version": "4.1.2",
2
5
  "name": "@jeromefitz/design-system",
3
- "version": "4.1.1",
4
6
  "description": "Design System for JeromeFitzgerald.com (Radix UI)",
5
7
  "author": {
6
8
  "name": "Jerome Fitzgerald",
7
9
  "email": "j@jeromefitzgerald.com",
8
10
  "url": "https://jeromefitzgerald.com"
9
11
  },
12
+ "repository": "jeromefitz/packages.git",
13
+ "publishConfig": {
14
+ "registry": "https://registry.npmjs.org/"
15
+ },
10
16
  "keywords": [
11
17
  "design system",
12
18
  "radix-ui"
13
19
  ],
14
- "license": "MIT",
15
- "repository": {
16
- "type": "git",
17
- "url": "ssh://git@github.com/jeromefitz/packages.git",
18
- "directory": "packages/design-system"
19
- },
20
20
  "engines": {
21
21
  "node": ">=16"
22
22
  },
23
- "publishConfig": {
24
- "registry": "https://registry.npmjs.org/"
25
- },
26
- "private": false,
23
+ "type": "module",
24
+ "main": "./index.cjs",
25
+ "module": "./index.js",
26
+ "typings": "./index.d.ts",
27
+ "sideEffects": false,
27
28
  "scripts": {
28
29
  "build": "tsup-node",
29
- "dev": "tsup-node --watch",
30
- "storybook": "start-storybook -p 6006 --no-open --no-manager-cache --disable-telemetry --quiet",
31
- "storybook:build": "build-storybook --docs",
32
- "storybook:preview": "serve storybook-static",
33
- "---": "",
34
30
  "clean": "rm -rf .turbo && rm -rf dist",
35
31
  "clean:install": "pnpm run clean && rm -rf node_modules",
36
32
  "copy": "mkdir -p ./dist && ./scripts/copy.sh",
37
- "--- ": "",
33
+ "dev": "tsup-node --watch",
34
+ "format:lint": "pnpm run lint:eslint --fix && pnpm run format:prettier --write",
35
+ "format:prettier": "prettier \"./src/**/*.{cjs,js,jsx,mjs,ts,tsx,json,md,mdx,css,html,yml,yaml,scss}\" --ignore-unknown --loglevel warn",
36
+ "lint": "pnpm run format:prettier --check && pnpm run lint:eslint",
38
37
  "lint:eslint": "eslint ./src --ext cjs,js,jsx,mjs,ts,tsx --max-warnings=0",
39
- "lint:prettier": "prettier \"./src/**/*.{cjs,js,jsx,mjs,ts,tsx,json,md,mdx,css,html,yml,yaml,scss}\" --ignore-unknown --loglevel warn",
40
- "lint": "pnpm run lint:prettier --check && pnpm run lint:eslint",
41
- "lint:fix": "pnpm run lint:eslint --fix && pnpm run lint:prettier --write",
42
- "--- ": "",
43
- "semantic-release": "semantic-release"
38
+ "semantic-release": "semantic-release",
39
+ "storybook": "start-storybook -p 6006 --no-open --no-manager-cache --disable-telemetry --quiet",
40
+ "storybook:build": "build-storybook --docs",
41
+ "storybook:preview": "serve storybook-static"
44
42
  },
45
43
  "dependencies": {
46
44
  "@radix-ui/primitive": "1.0.0",
@@ -120,11 +118,11 @@
120
118
  "@types/react": "18.0.18",
121
119
  "@types/react-dom": "18.0.6",
122
120
  "@vitejs/plugin-react": "2.1.0",
123
- "cmdk": "0.1.20-beta.0",
124
- "framer-motion": "7.2.1",
121
+ "cmdk": "0.1.20",
122
+ "framer-motion": "7.3.2",
125
123
  "lodash": "4.17.21",
126
124
  "multiple-themes-stitches": "0.0.10",
127
- "next": "12.2.1",
125
+ "next": "12.2.5",
128
126
  "react": "18.2.0",
129
127
  "react-dom": "18.2.0",
130
128
  "serve": "14.0.1",
@@ -144,10 +142,5 @@
144
142
  "react": "^18.0.0",
145
143
  "react-dom": "^18.0.0",
146
144
  "swr": "^1.2.2"
147
- },
148
- "type": "module",
149
- "sideEffects": false,
150
- "typings": "./index.d.ts",
151
- "main": "./index.cjs",
152
- "module": "./index.js"
145
+ }
153
146
  }