-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.71 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.71 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
{
"name": "@hoverkraft/docusaurus-theme-workspace",
"private": true,
"version": "0.0.0",
"description": "Workspace for the Hoverkraft Docusaurus theme and documentation site.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hoverkraft-tech/docusaurus-theme.git"
},
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"packages/theme",
"packages/docs"
],
"scripts": {
"build": "npm run build --workspace=@hoverkraft/docusaurus-theme && npm run build --workspace=@hoverkraft/hoverkraft-theme-docs",
"start": "npm run start --workspace=@hoverkraft/hoverkraft-theme-docs",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"lint:ci": "npm run lint:ci --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:ci": "npm run test:ci --workspaces --if-present",
"prepare": "ts-dev-tools install"
},
"devDependencies": {
"@ts-dev-tools/react": "^1.9.17"
},
"prettier": {
"semi": true,
"printWidth": 100,
"trailingComma": "es5",
"plugins": []
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test)?(.*).+(ts|tsx|js)"
],
"collectCoverageFrom": [
"**/src/**/*.[jt]s?(x)"
]
},
"tsDevTools": {
"version": "20250623095600-remove-prettier-oxc"
}
}