-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.94 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@iamkhan21/fxform",
"type": "module",
"version": "2.4.0",
"description": "Reactive forms based on effector and zod",
"keywords": [
"effector",
"forms"
],
"author": {
"name": "Ivan Khanevich",
"email": "mail@iamkhan.tech"
},
"repository": "https://github.com/iamkhan21/fxform",
"funding": "https://github.com/sponsors/iamkhan21",
"homepage": "https://github.com/iamkhan21/fxform#readme",
"bugs": "https://github.com/iamkhan21/fxform/issues",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"scripts": {
"clean": "rimraf ./dist && rimraf ./package",
"build": "unbuild",
"bumpp": "bumpp",
"publish": "clean-publish",
"postpublish": "rimraf ./dist && rimraf ./package",
"release": "run-s clean bumpp build publish",
"test": "vitest",
"format": "nx rome format ./src --write",
"lint": "nx rome check ./src --apply-suggested",
"typecheck": "tsc --noEmit",
"update:deps": "nu -i --latest && ni"
},
"dependencies": {
"effector": "22.4.1",
"patronum": "1.12.3",
"zod": "3.20.2"
},
"devDependencies": {
"@antfu/ni": "0.18.8",
"@types/node": "18.11.17",
"bumpp": "8.2.1",
"clean-publish": "4.0.2",
"esno": "0.16.3",
"npm-run-all": "4.1.5",
"prettier": "2.8.1",
"rimraf": "3.0.2",
"rome": "11.0.0",
"typescript": "4.9.4",
"unbuild": "1.0.2",
"vitest": "0.26.2"
},
"publishConfig": {
"directory": "package"
},
"clean-publish": {
"access": "public",
"files": [
".idea",
"src",
"tsconfig.json",
"build.config.ts",
".gitignore",
".npmrc"
],
"tempDir": "package"
}
}