-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.19 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
{
"name": "@hyperse/docusaurus-mono-starter",
"version": "1.0.1",
"description": "The starter template for running Github Pages with docusaurus for document",
"keywords": [
"hyperse",
"docusaurus",
"docs",
"gh pages",
"github workflow",
"Github Pages",
"github pages CI CD"
],
"homepage": "https://hyperse-io.github.io/docusaurus-mono-starter",
"bugs": {
"url": "https://github.com/hyperse-io/docusaurus-mono-starter/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:hyperse-io/docusaurus-mono-starter.git"
},
"type": "module",
"exports": {
".": {
"import": "./index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"./bin/",
"./dist/",
"./index.js"
],
"workspaces": [
"website",
"./"
],
"scripts": {
"build": "rimraf dist && tsc -p ./tsconfig.build.json",
"changeset": "changeset",
"cz": "cz",
"generate-coverage-badges": "yarn run test:coverage && generate-coverage-report --type badges",
"lint": "eslint .",
"lint-fix": "yarn lint --fix",
"lint-staged-files": "lint-staged --allow-empty",
"prepare": "husky",
"release": "yarn build && changeset publish",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --project ./tsconfig.json --noEmit"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@hyperse/eslint-config-hyperse": "^1.1.3",
"@hyperse/vitest-coverage-reporter": "^1.0.15",
"@types/node": "^22.5.0",
"@vitest/coverage-istanbul": "^2.0.5",
"cheerio": "^1.0.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.9.0",
"husky": "9.1.5",
"lint-staged": "15.2.9",
"rimraf": "6.0.1",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.4.0"
}