@rs-x/react-components 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.
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@rs-x/react-components",
3
+ "version": "1.0.1",
4
+ "description": "React extension for the RS-X framework with hooks to bind RS-X expressions to React components",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./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
+ "sideEffects": false,
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/robert-sanders-software-ontwikkeling/rs-x"
22
+ },
23
+ "homepage": "https://github.com/robert-sanders-software-ontwikkeling/rs-x",
24
+ "bugs": {
25
+ "url": "https://github.com/robert-sanders-software-ontwikkeling/rs-x/issues"
26
+ },
27
+ "publishConfig": {
28
+ "access": "public",
29
+ "provenance": true
30
+ },
31
+ "peerDependencies": {
32
+ "react": "^19.2.4",
33
+ "react-dom": "^19.2.4"
34
+ },
35
+ "dependencies": {
36
+ "monaco-editor": "^0.55.1",
37
+ "@rs-x/core": "1.0.1",
38
+ "@rs-x/expression-parser": "1.0.1",
39
+ "@rs-x/state-manager": "1.0.1"
40
+ },
41
+ "devDependencies": {
42
+ "@testing-library/react": "^16.3.2",
43
+ "@testing-library/user-event": "^14.6.1",
44
+ "@vitejs/plugin-react": "^5.1.4",
45
+ "eslint": "^10.0.2",
46
+ "eslint-plugin-react": "^7.37.5",
47
+ "globals": "^17.4.0",
48
+ "prettier": "^3.8.1",
49
+ "react": "^19.2.4",
50
+ "react-dom": "^19.2.4",
51
+ "rimraf": "^6.1.3",
52
+ "tsup": "^8.5.1",
53
+ "typescript": "^5.9.3",
54
+ "vite": "^7.3.1",
55
+ "vite-tsconfig-paths": "^6.1.1",
56
+ "vitest": "^4.0.18"
57
+ },
58
+ "engines": {
59
+ "node": ">=24"
60
+ },
61
+ "keywords": [
62
+ "rs-x",
63
+ "react",
64
+ "reactive",
65
+ "expressions",
66
+ "typescript",
67
+ "hooks"
68
+ ],
69
+ "scripts": {
70
+ "build": "tsup src/index.ts --format esm --dts --external react react-dom --tsconfig tsconfig.build.json",
71
+ "test": "vitest",
72
+ "clean": "rimraf dist"
73
+ }
74
+ }