@owanturist/signal-form 0.0.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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +43 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # `@owanturist/signal-form`
2
+
3
+ [![codecov](https://codecov.io/gh/owanturist/signal/branch/master/graph/badge.svg?token=QP3SXO8E9F)](https://codecov.io/gh/owanturist/signal)
4
+ ![known vulnerabilities](https://snyk.io/test/github/owanturist/signal/badge.svg)
5
+ ![types](https://badgen.net/npm/types/@owanturist/signal-form)
6
+ [![npm version](https://badge.fury.io/js/@owanturist/signal-form.svg)](https://badge.fury.io/js/@owanturist/signal-form)
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@owanturist/signal-form",
3
+ "type": "module",
4
+ "version": "0.0.0",
5
+ "description": "Type-safe declarative form state management",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "exports": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js",
15
+ "require": "./dist/index.cjs"
16
+ },
17
+ "keywords": [
18
+ "react",
19
+ "react-forms",
20
+ "forms",
21
+ "forms-state"
22
+ ],
23
+ "author": "Anton Ovechkin <owanturist@gmail.com>",
24
+ "license": "BSD-3-Clause",
25
+ "bugs": {
26
+ "url": "https://github.com/owanturist/signal/issues"
27
+ },
28
+ "repository": "https://github.com/owanturist/signal/tree/master/packages/signal-form",
29
+ "homepage": "https://github.com/owanturist/signal/packages/signal-form#readme",
30
+ "scripts": {
31
+ "typecheck": "tsc --noEmit",
32
+ "build": "tsup src/index.ts --config ../../tsup.config.ts"
33
+ },
34
+ "peerDependencies": {
35
+ "@owanturist/signal": "^0.0.0"
36
+ },
37
+ "devDependencies": {
38
+ "@owanturist/signal": "workspace:*",
39
+ "vite-tsconfig-paths": "^6.0.5",
40
+ "vitest": "^4.0.18",
41
+ "zod": "^4.3.6"
42
+ }
43
+ }