jsonisch 0.1.0

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,87 @@
1
+ {
2
+ "name": "jsonisch",
3
+ "version": "0.1.0",
4
+ "description": "Schema in, reactive form out. Derive forms from JSON Schema.",
5
+ "license": "MIT",
6
+ "author": "Andrew Brown <andrewbrown600@gmail.com>",
7
+ "homepage": "https://github.com/andrew310/jsonisch",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/andrew310/jsonisch.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/andrew310/jsonisch/issues"
14
+ },
15
+ "keywords": [
16
+ "json-schema",
17
+ "forms",
18
+ "react",
19
+ "signals",
20
+ "form-library",
21
+ "validation",
22
+ "ajv"
23
+ ],
24
+ "type": "module",
25
+ "sideEffects": false,
26
+ "main": "./dist/index.js",
27
+ "types": "./dist/index.d.ts",
28
+ "exports": {
29
+ ".": {
30
+ "types": "./dist/index.d.ts",
31
+ "import": "./dist/index.js",
32
+ "default": "./dist/index.js"
33
+ },
34
+ "./plugin": {
35
+ "types": "./dist/plugin/index.d.ts",
36
+ "import": "./dist/plugin/index.js",
37
+ "default": "./dist/plugin/index.js"
38
+ },
39
+ "./react": {
40
+ "types": "./dist/react/index.d.ts",
41
+ "import": "./dist/react/index.js",
42
+ "default": "./dist/react/index.js"
43
+ },
44
+ "./package.json": "./package.json"
45
+ },
46
+ "files": [
47
+ "dist",
48
+ "docs",
49
+ "CHANGELOG.md",
50
+ "LICENSE",
51
+ "README.md"
52
+ ],
53
+ "publishConfig": {
54
+ "access": "public",
55
+ "provenance": true
56
+ },
57
+ "engines": {
58
+ "node": ">=20"
59
+ },
60
+ "peerDependencies": {
61
+ "react": "^19.0.0"
62
+ },
63
+ "peerDependenciesMeta": {
64
+ "react": {
65
+ "optional": true
66
+ }
67
+ },
68
+ "devDependencies": {
69
+ "@testing-library/dom": "^10.4.1",
70
+ "@testing-library/react": "^16.3.3",
71
+ "@types/react": "^19.2.18",
72
+ "@types/react-dom": "^19.2.5",
73
+ "@vitejs/plugin-react": "^5.2.0",
74
+ "babel-plugin-react-compiler": "^1.0.0",
75
+ "jsdom": "^25.0.1",
76
+ "react": "^19.2.8",
77
+ "react-dom": "^19.2.8",
78
+ "tsdown": "^0.16.8",
79
+ "typescript": "~5.9.3",
80
+ "vitest": "^4.1.11"
81
+ },
82
+ "scripts": {
83
+ "build": "tsdown",
84
+ "test": "vitest run",
85
+ "typecheck": "tsc --noEmit"
86
+ }
87
+ }