-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"version": "0.0.0",
"license": "MIT",
"name": "@stackup/form",
"author": "rzane",
"main": "dist/index.js",
"module": "dist/form.esm.js",
"typings": "dist/index.d.ts",
"description": "A type-safe approach to managing complex form state in React.",
"repository": "github:rzane/form",
"homepage": "https://github.com/rzane/form#readme",
"bugs": "https://github.com/rzane/form/issues",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "yarn --cwd example run -s start",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src test",
"prepare": "tsdx build",
"docs": "bin/docs"
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "none"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@stackup/validate": "^0.3.0",
"@testing-library/react-hooks": "^3.4.2",
"@types/react-dom": "^16.9.8",
"babel-jest": "^26.2.2",
"documentation": "^13.0.2",
"jest": "^26.4.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"tsdx": "^0.14.0",
"tslib": "^2.0.0",
"typescript": "^4.0.3"
}
}