-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.63 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.63 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
{
"name": "alauda-doom",
"version": "1.10.12",
"type": "module",
"description": "Doctor Doom making docs.",
"repository": "git+https://github.com/alauda/doom.git",
"homepage": "https://github.com/alauda/doom#readme",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "yarn@4.13.0",
"scripts": {
"build": "tsc -b",
"dev": "yarn swc-node --watch-path packages/doom/src/cli --watch-path packages/doom/src/plugins packages/doom/src/cli/index.ts",
"docs": "run-s docs:build docs:export",
"docs:build": "yarn doom build",
"docs:export": "yarn doom export",
"doom": "yarn swc-node packages/doom/src/cli/index.ts",
"fixture": "yarn dev fixture-docs",
"format": "prettier --write .",
"lint": "run-p 'lint:*'",
"lint:es": "eslint .",
"lint:tsc": "tsc",
"prepare": "simple-git-hooks && patch-package && yarn-berry-deduplicate || exit 0",
"release": "yarn build && changeset publish",
"serve": "yarn doom serve",
"swc-node": "node --enable-source-maps --import @swc-node/register/esm-register",
"test": "rstest --coverage",
"translate": "yarn doom translate -g '*' -s zh -t en",
"typecov": "type-coverage",
"version": "changeset version && yarn --no-immutable"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@rstest/core": "^0.9.6",
"@rstest/coverage-istanbul": "^0.3.1",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.24",
"@types/cli-progress": "^3.11.6",
"@types/ejs": "^3.1.5",
"@types/masonry-layout": "^4.2.8",
"@types/mdast": "^4.0.4",
"@types/node": "^24.12.2",
"@types/picomatch": "^4.0.3",
"@types/pluralize": "^0.0.33",
"@types/react-dom": "^19.2.3",
"@types/swagger2openapi": "^7.0.4",
"@unts/patch-package": "^8.1.1",
"eslint": "^10.2.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-regexp": "^3.1.0",
"nano-staged": "^1.0.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"prettier-plugin-pkg": "^0.22.1",
"prettier-plugin-properties": "^0.3.1",
"simple-git-hooks": "^2.13.1",
"type-coverage": "^2.29.7",
"typescript": "^6.0.2",
"yarn-berry-deduplicate": "^6.1.3"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreFiles": [
"**/lib/**/*.d.ts",
"**/pyodide/**/*.d.ts"
],
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}