formspec 0.1.0-alpha.13 → 0.1.0-alpha.14
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/README.md +8 -8
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -147,14 +147,14 @@ You can import from the umbrella package for convenience, or from individual pac
|
|
|
147
147
|
|
|
148
148
|
## Related Packages
|
|
149
149
|
|
|
150
|
-
| Package
|
|
151
|
-
|
|
|
152
|
-
| `@formspec/constraints`
|
|
153
|
-
| `@formspec/validator`
|
|
154
|
-
| `@formspec/eslint-plugin`
|
|
155
|
-
| `@formspec/language-server` | Language server for editor integration
|
|
156
|
-
| `@formspec/cli`
|
|
157
|
-
| `@formspec/playground`
|
|
150
|
+
| Package | Description |
|
|
151
|
+
| --------------------------- | ------------------------------------------ |
|
|
152
|
+
| `@formspec/constraints` | Constraint definitions and validators |
|
|
153
|
+
| `@formspec/validator` | JSON Schema validation for secure runtimes |
|
|
154
|
+
| `@formspec/eslint-plugin` | ESLint rules for FormSpec |
|
|
155
|
+
| `@formspec/language-server` | Language server for editor integration |
|
|
156
|
+
| `@formspec/cli` | CLI tool for build-time schema generation |
|
|
157
|
+
| `@formspec/playground` | Interactive browser editor (private) |
|
|
158
158
|
|
|
159
159
|
## License
|
|
160
160
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "formspec",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.14",
|
|
4
4
|
"description": "Type-safe form specifications that compile to JSON Schema and JSON Forms UI Schema",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"README.md"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@formspec/core": "0.1.0-alpha.
|
|
22
|
-
"@formspec/dsl": "0.1.0-alpha.
|
|
23
|
-
"@formspec/build": "0.1.0-alpha.
|
|
24
|
-
"@formspec/runtime": "0.1.0-alpha.
|
|
21
|
+
"@formspec/core": "0.1.0-alpha.14",
|
|
22
|
+
"@formspec/dsl": "0.1.0-alpha.14",
|
|
23
|
+
"@formspec/build": "0.1.0-alpha.14",
|
|
24
|
+
"@formspec/runtime": "0.1.0-alpha.14"
|
|
25
25
|
},
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"access": "public"
|