-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.52 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
{
"name": "formatic-react",
"version": "0.2.0",
"description": "A form library for React",
"private": false,
"author": {
"email": "[email protected]",
"name": "cvs0",
"url": "https://cvs0.xyz"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"exports": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"lint": "eslint src/**/*.{ts,tsx}"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cvs0/formatic.git"
},
"keywords": [
"react",
"forms",
"library",
"typescript"
],
"devDependencies": {
"@babel/core": "^7.25.8",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/lodash": "^4.17.10",
"@types/node": "^22.7.6",
"@types/react": "^18.3.11",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"react": "^18.3.1",
"rollup": "^4.24.0",
"rollup-plugin-sass": "^1.13.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"files": [
"dist"
],
"dependencies": {
"@babel/runtime": "^7.25.7",
"lodash": "^4.17.21"
}
}