@jrkropp/codex-js-react 0.2.0 → 0.2.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 (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +76 -76
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @jrkropp/codex-js-react
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#6](https://github.com/jrkropp/codex-js/pull/6) [`cddb1ce`](https://github.com/jrkropp/codex-js/commit/cddb1ce1f0c021b8ff79a08a6ce9bb8ae69048d7) Thanks [@jrkropp](https://github.com/jrkropp)! - Replace the package's internal workspace dependency with a publishable semver range so npm consumers can install the React package from the registry.
8
+
3
9
  ## 0.2.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,77 +1,77 @@
1
1
  {
2
- "name": "@jrkropp/codex-js-react",
3
- "version": "0.2.0",
4
- "description": "React components and shadcn-compatible UI for codex-js.",
5
- "license": "Apache-2.0",
6
- "type": "module",
7
- "sideEffects": [
8
- "**/*.css"
9
- ],
10
- "engines": {
11
- "node": ">=20"
12
- },
13
- "files": [
14
- "dist",
15
- "README.md",
16
- "CHANGELOG.md",
17
- "LICENSE",
18
- "NOTICE"
19
- ],
20
- "exports": {
21
- ".": {
22
- "types": "./dist/index.d.ts",
23
- "import": "./dist/index.js"
24
- },
25
- "./shadcn": {
26
- "types": "./dist/shadcn/index.d.ts",
27
- "import": "./dist/shadcn/index.js"
28
- },
29
- "./styles.css": "./dist/styles.css"
30
- },
31
- "scripts": {
32
- "build": "pnpm clean && tsup && tsc -p tsconfig.build.json --pretty false && node ../../scripts/fix-dts-extensions.mjs dist && tailwindcss -i src/styles.css -o dist/styles.css --minify",
33
- "clean": "rm -rf dist",
34
- "pack:dry-run": "pnpm pack --dry-run",
35
- "publint": "publint",
36
- "typecheck": "tsc -p tsconfig.json --pretty false"
37
- },
38
- "dependencies": {
39
- "@jrkropp/codex-js": "workspace:^",
40
- "@legendapp/list": "^3.0.0-beta.44",
41
- "@lexical/react": "^0.44.0",
42
- "class-variance-authority": "^0.7.1",
43
- "clsx": "^2.1.1",
44
- "cmdk": "^1.1.1",
45
- "lexical": "^0.44.0",
46
- "lucide-react": "^1.11.0",
47
- "radix-ui": "^1.4.3",
48
- "react-markdown": "^10.1.0",
49
- "remark-gfm": "^4.0.1",
50
- "tailwind-merge": "^3.5.0",
51
- "zustand": "^5.0.13"
52
- },
53
- "peerDependencies": {
54
- "react": "^18.3.0 || ^19.0.0",
55
- "react-dom": "^18.3.0 || ^19.0.0"
56
- },
57
- "devDependencies": {
58
- "@types/react": "19.2.7",
59
- "@types/react-dom": "19.2.3",
60
- "tailwindcss": "^4.1.17",
61
- "tw-animate-css": "^1.4.0",
62
- "typescript": "5.8.3"
63
- },
64
- "publishConfig": {
65
- "access": "public",
66
- "provenance": true
67
- },
68
- "repository": {
69
- "type": "git",
70
- "url": "git+https://github.com/jrkropp/codex-js.git",
71
- "directory": "packages/codex-js-react"
72
- },
73
- "bugs": {
74
- "url": "https://github.com/jrkropp/codex-js/issues"
75
- },
76
- "homepage": "https://github.com/jrkropp/codex-js#readme"
77
- }
2
+ "name": "@jrkropp/codex-js-react",
3
+ "version": "0.2.1",
4
+ "description": "React components and shadcn-compatible UI for codex-js.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "sideEffects": [
8
+ "**/*.css"
9
+ ],
10
+ "engines": {
11
+ "node": ">=20"
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "README.md",
16
+ "CHANGELOG.md",
17
+ "LICENSE",
18
+ "NOTICE"
19
+ ],
20
+ "exports": {
21
+ ".": {
22
+ "types": "./dist/index.d.ts",
23
+ "import": "./dist/index.js"
24
+ },
25
+ "./shadcn": {
26
+ "types": "./dist/shadcn/index.d.ts",
27
+ "import": "./dist/shadcn/index.js"
28
+ },
29
+ "./styles.css": "./dist/styles.css"
30
+ },
31
+ "dependencies": {
32
+ "@jrkropp/codex-js": "^0.2.0",
33
+ "@legendapp/list": "^3.0.0-beta.44",
34
+ "@lexical/react": "^0.44.0",
35
+ "class-variance-authority": "^0.7.1",
36
+ "clsx": "^2.1.1",
37
+ "cmdk": "^1.1.1",
38
+ "lexical": "^0.44.0",
39
+ "lucide-react": "^1.11.0",
40
+ "radix-ui": "^1.4.3",
41
+ "react-markdown": "^10.1.0",
42
+ "remark-gfm": "^4.0.1",
43
+ "tailwind-merge": "^3.5.0",
44
+ "zustand": "^5.0.13"
45
+ },
46
+ "peerDependencies": {
47
+ "react": "^18.3.0 || ^19.0.0",
48
+ "react-dom": "^18.3.0 || ^19.0.0"
49
+ },
50
+ "devDependencies": {
51
+ "@types/react": "19.2.7",
52
+ "@types/react-dom": "19.2.3",
53
+ "tailwindcss": "^4.1.17",
54
+ "tw-animate-css": "^1.4.0",
55
+ "typescript": "5.8.3"
56
+ },
57
+ "publishConfig": {
58
+ "access": "public",
59
+ "provenance": true
60
+ },
61
+ "repository": {
62
+ "type": "git",
63
+ "url": "git+https://github.com/jrkropp/codex-js.git",
64
+ "directory": "packages/codex-js-react"
65
+ },
66
+ "bugs": {
67
+ "url": "https://github.com/jrkropp/codex-js/issues"
68
+ },
69
+ "homepage": "https://github.com/jrkropp/codex-js#readme",
70
+ "scripts": {
71
+ "build": "pnpm clean && tsup && tsc -p tsconfig.build.json --pretty false && node ../../scripts/fix-dts-extensions.mjs dist && tailwindcss -i src/styles.css -o dist/styles.css --minify",
72
+ "clean": "rm -rf dist",
73
+ "pack:dry-run": "pnpm pack --dry-run",
74
+ "publint": "publint",
75
+ "typecheck": "tsc -p tsconfig.json --pretty false"
76
+ }
77
+ }