-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.65 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
{
"name": "react-simple-linkify-monorepo",
"version": "2.0.0",
"private": true,
"description": "Monorepo for react-simple-linkify (library + demo)",
"license": "MIT",
"author": "Yura Khvyshchuk <owngameplay@gmail.com> (https://github.com/yurkagon)",
"repository": {
"type": "git",
"url": "git+https://github.com/yurkagon/react-simple-linkify.git"
},
"type": "module",
"packageManager": "pnpm@11.2.2",
"engines": {
"node": ">=20.19"
},
"scripts": {
"dev": "pnpm --filter demo dev",
"build": "pnpm --filter react-simple-linkify build",
"test": "pnpm --filter react-simple-linkify test",
"test:watch": "pnpm --filter react-simple-linkify test:watch",
"test:coverage": "pnpm --filter react-simple-linkify test:coverage",
"typecheck": "pnpm -r typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"verify-pack": "pnpm --filter react-simple-linkify verify-pack",
"release": "pnpm build && pnpm --filter react-simple-linkify publish",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"eslint": "10.5.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.3",
"globals": "17.6.0",
"husky": "9.1.7",
"lint-staged": "17.0.7",
"prettier": "3.8.4",
"typescript": "6.0.3",
"typescript-eslint": "8.61.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css,html}": [
"prettier --write"
]
}
}