-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
78 lines (78 loc) · 1.53 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
{
"name": "lector-monorepo",
"version": "0.0.0",
"description": "Headless PDF viewer for React",
"author": "andrewdr (https://github.com/andrewdoro)",
"type": "module",
"private": "true",
"scripts": {
"build": "turbo run build ",
"lint": "turbo run lint",
"format": "turbo run format",
"prepare": "husky",
"test": "turbo run test",
"dev": "turbo run dev"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"commitlint": "^19.6.1",
"turbo": "^2.3.3"
},
"keywords": [
"pdf",
"react",
"headless",
"viewer",
"react-pdf",
"unriddle-ai",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/unriddle-ai/lector.git"
},
"bugs": {
"url": "https://github.com/unriddle-ai/lector/issues"
},
"homepage": "https://github.com/unriddle-ai/lector",
"packageManager": "[email protected]",
"dependencies": {
"husky": "^9.1.7",
"semantic-release": "^24.2.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"clean",
"doc",
"feat",
"fix",
"perf",
"ref",
"revert",
"style",
"test"
]
],
"subject-case": [
0,
"always",
"sentence-case"
],
"body-leading-blank": [
2,
"always",
true
]
}
}
}