@form-instant/react-input-mapping 2.0.2 → 2.0.4
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 +31 -33
package/package.json
CHANGED
|
@@ -1,21 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"type": "module",
|
|
3
|
-
"private": false,
|
|
4
|
-
"license": "MIT",
|
|
5
|
-
"version": "2.0.2",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"module": "dist/index.js",
|
|
8
|
-
"types": "dist/src/index.d.ts",
|
|
9
|
-
"files": [
|
|
10
|
-
"dist"
|
|
11
|
-
],
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"types": "./dist/src/index.d.ts",
|
|
15
|
-
"default": "./dist/index.js"
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
2
|
"name": "@form-instant/react-input-mapping",
|
|
3
|
+
"version": "2.0.4",
|
|
19
4
|
"author": {
|
|
20
5
|
"name": "leomerida15",
|
|
21
6
|
"email": "dimasmerida15@gmail.com",
|
|
@@ -25,36 +10,49 @@
|
|
|
25
10
|
"type": "git",
|
|
26
11
|
"url": "git+https://github.com/leomerida15/form-instant-react-mapping.git"
|
|
27
12
|
},
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"
|
|
32
|
-
"build:types": "bun x tsc --project tsconfig.build.json",
|
|
33
|
-
"lint": "bun -b eslint --config ../../eslint.config.mjs src --ext .ts,.tsx",
|
|
34
|
-
"lint:fix": "bun -b eslint --config ../../eslint.config.mjs src --ext .ts,.tsx --fix",
|
|
35
|
-
"start": "bun run bunpack.watch.ts",
|
|
36
|
-
"watch": "bun run bunpack.watch.ts --build",
|
|
37
|
-
"docs": "bun run docs-serve.ts",
|
|
38
|
-
"docs:dev": "bun run docs.watch.ts"
|
|
39
|
-
},
|
|
40
|
-
"dependencies": {
|
|
41
|
-
"i": "^0.3.7"
|
|
13
|
+
"main": "dist/index.js",
|
|
14
|
+
"module": "dist/index.js",
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"@types/react": "^19.2.10"
|
|
42
17
|
},
|
|
43
18
|
"peerDependencies": {
|
|
44
19
|
"react": "^19.2.4"
|
|
45
20
|
},
|
|
46
|
-
"
|
|
47
|
-
"
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/src/index.d.ts",
|
|
24
|
+
"default": "./dist/index.js"
|
|
25
|
+
}
|
|
48
26
|
},
|
|
49
27
|
"engines": {
|
|
50
28
|
"node": ">=22",
|
|
51
29
|
"bun": ">=1.3.0"
|
|
52
30
|
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
53
34
|
"homepage": "https://leomerida15.github.io/form-instant-react-mapping",
|
|
54
35
|
"keywords": [
|
|
55
36
|
"@form-instant",
|
|
56
37
|
"react",
|
|
57
38
|
"mapping",
|
|
58
39
|
"form"
|
|
59
|
-
]
|
|
40
|
+
],
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"private": false,
|
|
43
|
+
"scripts": {
|
|
44
|
+
"dev": "bun run bunpack.watch.ts",
|
|
45
|
+
"build": "bun run bunpack.build.ts",
|
|
46
|
+
"build:types": "bun x tsc --project tsconfig.build.json",
|
|
47
|
+
"type:check": "bun x tsc --noEmit",
|
|
48
|
+
"lint": "eslint src",
|
|
49
|
+
"lint:fix": "eslint src --fix",
|
|
50
|
+
"start": "bun run bunpack.watch.ts",
|
|
51
|
+
"watch": "bun run bunpack.watch.ts --build",
|
|
52
|
+
"test": "jest --passWithNoTests",
|
|
53
|
+
"docs": "bun run docs-serve.ts",
|
|
54
|
+
"docs:dev": "bun run docs.watch.ts"
|
|
55
|
+
},
|
|
56
|
+
"type": "module",
|
|
57
|
+
"types": "dist/src/index.d.ts"
|
|
60
58
|
}
|