@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.
- package/CHANGELOG.md +6 -0
- 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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
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
|
+
}
|