-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.54 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
{
"name": "@nobrainers/react-click-edit",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/matheusrocha89/react-click-edit"
},
"description": "No Brainer input click to edit",
"main": "dist/click-edit.umd.js",
"module": "dist/click-edit.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "vite build",
"build:map": "vite build --sourcemap",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"test:watch": "vitest src"
},
"keywords": [
"react",
"react-component",
"click",
"input"
],
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/click-edit.es.js",
"require": "./dist/click-edit.umd.js"
},
"./dist/style.css": {
"import": "./dist/react-click-edit.css",
"require": "./dist/react-click-edit.css"
}
},
"author": "",
"license": "MIT",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"jsdom": "^26.0.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"react-hook-form": "^7.54.2",
"semantic-release": "^24.2.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.5.0",
"vitest": "^2.1.8"
},
"dependencies": {
"classnames": "^2.5.1",
"react-icons": "^5.4.0"
},
"lint-staged": {
"*.ts?(x)": [
"eslint --fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}