-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "@corets/use-form",
"description": "React hooks for the @corets/form package",
"version": "0.8.0",
"author": "Maxim Kott",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js"
},
"keywords": [
"corets",
"react",
"hooks",
"form"
],
"files": [
"/dist"
],
"repository": "github:corets/use-form",
"homepage": "https://docs.corets.io/hooks/use-form",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage && echo '\nOpen \"coverage/lcov-report/index.html\" in your browser\n'",
"lint": "tsc --noEmit",
"format": "prettier --write .",
"build": "tsc --noEmit && tsup src/index.ts --clean --dts --sourcemap --format esm,cjs --legacy-output",
"release": "np --no-release-draft",
"preview": "np --no-release-draft --tag dev",
"version": "yarn run build"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0"
},
"dependencies": {
"@corets/accessor": "^0.2.2",
"@corets/form": "^0.9.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^26.0.24",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"jest": "^27.0.6",
"np": "^7.6.3",
"prettier": "2.2.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"ts-jest": "^27.0.3",
"tsup": "^4.12.5",
"typescript": "^4.3.5"
}
}