-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.42 KB
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
{
"name": "react-highlightable-input",
"version": "2.0.2",
"type": "module",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"repository": {
"url": "https://github.com/HarshitRV/react-highlightable-input"
},
"keywords": [
"react",
"highlight",
"input",
"contenteditable"
],
"scripts": {
"dev": "vite",
"build": "tsc --p ./tsconfig-build.json && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"commit": "cz",
"release": "commit-and-tag-version",
"release:minor": "commit-and-tag-version --release-as minor",
"release:major": "commit-and-tag-version --release-as major",
"release:patch": "commit-and-tag-version --release-as patch",
"release:dry": "commit-and-tag-version --dry-run",
"prepublishOnly": "pnpm run build",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "pnpm@11.1.2",
"engines": {
"node": ">=20"
},
"peerDependencies": {
"react": "^18.2.0 || ^19.0.0",
"react-dom": "^18.2.0 || ^19.0.0"
},
"dependencies": {
"react-compiler-runtime": "1.0.0",
"sanitize-html": "2.17.5"
},
"devDependencies": {
"@babel/core": "7.29.7",
"@commitlint/cli": "21.2.0",
"@commitlint/config-conventional": "21.2.0",
"@eslint/js": "10.0.1",
"@rolldown/plugin-babel": "0.2.3",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/babel__core": "7.20.5",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@types/sanitize-html": "2.16.1",
"@vitejs/plugin-react": "6.0.3",
"babel-plugin-react-compiler": "1.0.0",
"commit-and-tag-version": "12.7.3",
"commitizen": "4.3.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "10.6.0",
"eslint-plugin-react-hooks": "7.1.1",
"glob": "13.0.6",
"globals": "17.7.0",
"husky": "9.1.7",
"jsdom": "29.1.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"sass": "1.101.0",
"typescript": "5.9.3",
"typescript-eslint": "8.62.1",
"vite": "8.1.3",
"vite-plugin-dts": "5.0.3",
"vite-plugin-lib-inject-css": "2.2.2",
"vitest": "4.1.9"
},
"sideEffects": [
"**/*.css"
],
"license": "MIT"
}