generated from rtivital/ts-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.85 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
{
"name": "mantine-form-yup-resolver",
"description": "Yup resolver for @mantine/form validation",
"packageManager": "[email protected]",
"version": "2.0.0",
"type": "module",
"author": "Vitaly Rtishchev <[email protected]>",
"engines": {
"node": ">=16.6.0"
},
"keywords": [
"typescript",
"template"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mantinedev/mantine-form-yup-resolver.git"
},
"bugs": {
"url": "https://github.com/mantinedev/mantine-form-yup-resolver/issues"
},
"homepage": "https://github.com/mantinedev/mantine-form-yup-resolver#readme",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"module": "./dist/esm/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"scripts": {
"clean": "rimraf dist",
"generate-dts": "esno scripts/generate-dts",
"build": "rollup -c rollup.config.mjs && npm run generate-dts",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache --ext .ts,.tsx .",
"jest": "jest",
"test": "npm run prettier:check && npm run typecheck && npm run lint && npm run jest",
"release": "npm test && esno scripts/release"
},
"devDependencies": {
"@mantine/form": "^7.2.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.1",
"@types/fs-extra": "^11",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/signale": "^1",
"@types/yargs": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"esno": "^0.17.0",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"new-github-release-url": "^2.0.0",
"open": "^9.1.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.3.0",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-node-externals": "^6.1.2",
"signale": "^1.4.0",
"simple-git": "^3.20.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"version-next": "^1.0.2",
"yargs": "^17.7.2",
"yup": "^1.3.2"
},
"peerDependencies": {
"@mantine/form": ">=7.0.0",
"yup": ">=1.0.0"
}
}