-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
131 lines (131 loc) · 3.97 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "react-formal",
"version": "3.0.0-rc.1",
"description": "Classy HTML form management for React",
"author": {
"name": "Jason Quense",
"email": "[email protected]"
},
"homepage": "http://jquense.github.io/react-formal/",
"repository": {
"type": "git",
"url": "git+https://github.com/jquense/react-formal.git"
},
"license": "MIT",
"sideEffects": false,
"files": [
"lib",
"cjs",
"CHANGELOG.md"
],
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"require": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
},
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"keywords": [
"react-formal",
"react",
"form",
"forms",
"inputs",
"validator",
"schema",
"validation",
"react-component",
"yup"
],
"scripts": {
"test": "vitest run",
"tdd": "vitest",
"lint": "eslint src",
"docs": "yarn --cwd www start",
"docs:deploy": "yarn --cwd www deploy",
"build:esm": "babel src --out-dir lib --delete-dir-on-start --extensions '.ts,.tsx' --ignore='**/*.d.ts'",
"build:esm:types": "tsc -p . --emitDeclarationOnly --declaration --outDir lib",
"build:cjs": "babel src --out-dir cjs --env-name cjs --delete-dir-on-start --extensions '.ts,.tsx' --ignore='**/*.d.ts' && echo '{\"type\": \"commonjs\"}' > cjs/package.json",
"build:cjs:types": "tsc -p . --emitDeclarationOnly --declaration --outDir cjs",
"build": "yarn build:esm && yarn build:esm:types && yarn build:cjs && yarn build:cjs:types",
"prepare": "npm run build",
"deploy-docs": "yarn --cwd www build --prefix-paths && gh-pages -d www/public",
"release": "rollout"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"quoteProps": "consistent"
},
"publishConfig": {
"access": "public"
},
"release": {
"conventionalCommits": true
},
"peerDependencies": {
"react": ">=18.0.0"
},
"dependencies": {
"@restart/hooks": "^0.6.2",
"prop-types": "^15.7.2",
"property-expr": "^2.0.4",
"shallowequal": "^1.1.0",
"uncontrollable": "^9.0.0",
"yup": ">=1.0.0"
},
"devDependencies": {
"@4c/cli": "^4.0.4",
"@4c/rollout": "patch:@4c/rollout@npm%3A4.0.2#~/.yarn/patches/@4c-rollout-npm-4.0.2-ab2b6d0bab.patch",
"@4c/tsconfig": "^0.4.0",
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"babel-eslint": "^10.1.0",
"babel-preset-jason": "^6.3.0",
"cherry-pick": "^0.5.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.3.0",
"eslint-config-4catalyzer-typescript": "^3.2.0",
"eslint-config-jason": "^8.2.2",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^3.2.3",
"jsdom": "^25.0.1",
"prettier": "^2.5.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-tackle-box": "^2.1.0",
"react-widgets": "^5.5.1",
"rimraf": "^3.0.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"bugs": {
"url": "https://github.com/jquense/react-formal/issues"
},
"packageManager": "[email protected]+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728",
"resolutions": {
"@4c/rollout@npm:^4.0.2": "patch:@4c/rollout@npm%3A4.0.2#~/.yarn/patches/@4c-rollout-npm-4.0.2-ab2b6d0bab.patch"
},
"stableVersion": "2.7.1"
}