-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.65 KB
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
{
"name": "efx-forms",
"version": "3.0.0",
"description": "Effector JS Forms",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "rm -rf lib/* && tsc && ./npmize",
"publish-lib": "npm run build && npm publish ./lib",
"publish-beta": "npm run build && npm publish --tag beta ./lib",
"publish-dryrun": "npm run build && npm publish --dry-run ./lib",
"lint": "eslint . --ext .ts --ext .tsx",
"test": "playwright test -c playwright-ct.config.ts",
"test:open": "playwright test -c playwright-ct.config.ts --ui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darianstlex/efx-forms.git"
},
"keywords": [
"typescript",
"effector",
"forms",
"library"
],
"author": "Ivan Uzun <iv.uzun@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/darianstlex/efx-forms/issues"
},
"homepage": "https://github.com/darianstlex/efx-forms#readme",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/experimental-ct-react": "^1.60.0",
"@types/lodash": "^4.17.24",
"@types/node": "22.10.9",
"@types/react": "^19.2.14",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"effector": "^23.4.4",
"effector-react": "^23.3.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.6.0",
"lodash": "^4.18.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
},
"peerDependencies": {
"effector": ">=23.0.0 <24.0.0",
"effector-react": ">=23.0.0 <24.0.0",
"lodash": "^4.18.1",
"react": ">=16.8.0 <20.0.0"
}
}